Exemplo n.º 1
0
        public LogicWorkspace(int countOfExps)
        {
            this.countOfExps = countOfExps;

            expressions = new List<LogicWorkspaceItem>(countOfExps >= 20 ? 20 : countOfExps);
            parser = new LogicParser();
            parameters = new LogicParameterCollection();
        }
Exemplo n.º 2
0
 public void TestInit()
 {
     parser = new LogicParser();
 }
Exemplo n.º 3
0
 public TruthTablePresenter()
 {
     parser = new LogicParser();
 }