예제 #1
0
 public List<TermModel> GetFunctionBodyModel(TermFunction function)
 {
     return PossibleFunctions.GetValueOrNull(new NameAndArity(function));
 }
예제 #2
0
 public NameAndArity(TermFunction function)
 {
     Name = function.FunctionName;
     Arity = function.Arity;
 }
예제 #3
0
 /**
  * Gets the mapping for a function.
  * Iterates over all the Term of the functions and recursively tries to map them.
  *
  * @param func The function whose mappings to compute.
  * @return The function after all Substitution2s have been made.
  */
 public override TermFunction GetMapping(TermFunction func)
 {
     throw new NotImplementedException();
 }