Esempio n. 1
0
 /// <summary>
 /// Add this name and concept to the trie of all known names of all known monadic concepts.
 /// </summary>
 /// <param name="tokens">Name to add for the concept</param>
 /// <param name="c">Concept to add</param>
 /// <param name="isPlural">True when concept is a common noun and the name is its plural.</param>
 public void Store(string[] tokens, MonadicConcept c, bool isPlural = false) => MonadicConceptTrie.Store(tokens, c, isPlural);
Esempio n. 2
0
 internal MonadicConceptLiteral(MonadicConcept concept, bool isPositive = true)
 {
     Concept    = concept;
     IsPositive = isPositive;
 }