2019-11-02 02:13:45 +01:00
|
|
|
#[derive(Clone, Eq, Hash, PartialEq)]
|
|
|
|
pub enum StatementKind
|
|
|
|
{
|
|
|
|
Axiom,
|
|
|
|
Lemma,
|
|
|
|
Conjecture,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Project
|
|
|
|
{
|
2019-11-02 07:23:34 +01:00
|
|
|
pub statements: std::collections::HashMap<StatementKind, Vec<foliage::Formula>>,
|
2019-11-02 02:13:45 +01:00
|
|
|
}
|