Ejemplo n.º 1
0
 private void Form1_Load(object sender, EventArgs e)
 {
     knowledgeBase   = new KnowledgeBase(@"C:\Users\admin\Source\Repos\WF_Expert_Systemoffz\WF_Expert_System\Knowlegde.txt");
     inferenceEngine = new InferenceEngine(knowledgeBase);
     for (int i = 0; i < inferenceEngine.Base.Parameters.Count; i++)
     {
         checkedListBox.Items.Add(inferenceEngine.Base.Parameters[i].Name, false);
     }
 }
Ejemplo n.º 2
0
 public InferenceEngine(KnowledgeBase knowledgeBase)
 {
     this.Base = knowledgeBase;
 }