Artificial Intelligence
Artificial Intelligence
Information

InferenceEngine.Restart method


      Resumes execution of inference engine in resetting the memory of the knowledge base.


Namespace : ielib
Assembly : ielib.dll

public void Restart()

      Use to reset the memory of the knowledge base of the instance before running of inference engine.


      Remark : This method calls the method ResetMemory() of the current database of the class KnowledgeBase (see the CurrentBase of this class InferenceEngine property).

Exemple :

InferenceEngine ie = new InferenceEngine("MyKBase.xml");

ie.Restart();ChainingResult result = ie.Run();