Interface Term
public interface Term
Represents a term in predicate logic.
A term is an object that can be the argument of a predicate. Examples: constants, variables, function applications.
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Method Summary
Modifier and TypeMethodDescriptiongetName()Returns the name or symbol of this term.booleanChecks if this term is a variable.
-
Method Details
-
getName
-
isVariable
boolean isVariable()Checks if this term is a variable.- Returns:
- true if variable, false if constant/function
-