Example #1
0
 /// <summary>
 /// Asserts (adds) a Fact in the current working memory.
 /// </summary>
 /// <param name="fact">The Fact to assert.</param>
 /// <returns>True if the Fact was added to the Fact Base, i.e. if it was really new!</returns>
 public bool Assert(Fact fact)
 {
     return(IE.Assert(fact));
 }