Artificial Intelligence
Artificial Intelligence
Information

InferenceEngine.CurrentBase Property


      Gets or sets an active knowledge base in the inference engine.


Namespace : ielib
Assembly : ielib.dll

public KnowledgeBase CurrentBase { set; get; }

Property value

An object of the KnowledgeBase class that is currently associated with this instance.



KnowledgeBase kb = new KnowledgeBase();
kb.LoadFrom("kbase.xml");

InferenceEngine ie = new InferenceEngine();

ie.CurrentBase = kb;