Example #1
0
 private AIState(AIState <L, V> oldState)
 {
     state         = oldState.GetState();
     preconditions = new Dictionary <L, V>(oldState.GetPreconditions());
     effects       = oldState.GetEffects();
 }
Example #2
0
 public AIState(AIState oldState)
 {
     state         = oldState.GetState();
     preconditions = new Dictionary <string, object>(oldState.GetPreconditions());
     effects       = oldState.GetEffects();
 }