Ejemplo n.º 1
0
    public void RemoveFact(string factName, WorkingMemoryValue factValue)
    {
        //tempList is needed for 'collection has changed' if we change directly in list
        List <WorkingMemoryValue> tempList = GetFact(factName);

        foreach (WorkingMemoryValue wm in GetFact(factName))
        {
            if (wm.GetFactValue().Equals(factValue.GetFactValue()))
            {
                tempList.Remove(wm);
                break;
            }
            else
            {
                //Do nothing
            }
        }
        if (tempList.Count == 0)
        {
            knownFacts.Remove(factName);
        }
        else
        {
            knownFacts[factName] = tempList;
        }

        blackBoard.RemoveFact(clan, factName, factValue);
    }