Пример #1
0
 public LemmaDecl(string name, Term statement, Proof proof) :
     this(name, ContextElem.CreateEmptyContext(), statement, proof)
 {
 }
Пример #2
0
 public LemmaDecl(string name, ContextElem contextElem, Term statement, Proof proof) :
     this(name, contextElem, new List <Term> {
     statement
 }, proof)
 {
 }
Пример #3
0
 public LemmaDecl(string name, ContextElem contextElem, IList <Term> statements, Proof proof) : base(name)
 {
     ContextElem = contextElem;
     Statements  = statements;
     Proof       = proof;
 }
Пример #4
0
 public LemmaDecl(string name, IList <Term> statements, Proof proof) :
     this(name, ContextElem.CreateEmptyContext(), statements, proof)
 {
 }
Пример #5
0
 public LocaleDecl(string name, ContextElem contextElem, IList <OuterDecl> body) : base(name)
 {
     this.contextElem = contextElem;
     this.body        = body;
 }