Class Product
java.lang.Object
org.tweetyproject.math.term.Term
org.tweetyproject.math.term.AssociativeOperation
org.tweetyproject.math.term.Product
This class models a product of two terms.
- Author:
- Matthias Thimm
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDifferentiates the term with respect to the given variable.voidThis method expands all associative operations appearing in this term, e.g.Returns all products of this term.booleanChecks whether this term is continuous in v.replaceTerm(Term toSubstitute, Term substitution) Replaces each occurrence of "toSubstitute" by "substitution" and return the new term.simplify()Simplifies this term in an equivalent way:
- Replaces products that contain a zero by the constant zero
- Removes a term one from products
- Removes a term zero from sums
- Aggregates constants in sums, products, and minimums
- Evaluates functional terms on constants
- Simplifies fractions where possible.Converts this term into a linear normal form, i.e.Return a quadratic formtoString()value()Computes the actual value of this term if it contains no variables.Methods inherited from class org.tweetyproject.math.term.AssociativeOperation
addAllTerm, addTerm, collapseAssociativeOperations, getAbsoluteValues, getMaximums, getMinimums, getSums, getTerms, getVariables, isInteger, removeTerm, sizeMethods inherited from class org.tweetyproject.math.term.Term
add, doubleValue, evaluateMatrix, evaluateVector, evaluateVector, isContinuous, isLinear, isQuadratic, min, minus, mult, replaceAllTerms, replaceAllTerms
-
Constructor Details
-
Product
public Product()Creates a new (empty) product. -
Product
-
Product
Creates a new product with the given list of terms.- Parameters:
terms- a list of terms.
-
-
Method Details
-
value
-
replaceTerm
Description copied from class:TermReplaces each occurrence of "toSubstitute" by "substitution" and return the new term.- Specified by:
replaceTermin classTerm- Parameters:
toSubstitute- the term to be substitutedsubstitution- the new term- Returns:
- this term where "toSubstitute" is replaced by "substitution"
-
getProducts
Description copied from class:TermReturns all products of this term.- Overrides:
getProductsin classAssociativeOperation- Returns:
- all products of this term.
-
expandAssociativeOperations
public void expandAssociativeOperations()Description copied from class:TermThis method expands all associative operations appearing in this term, e.g. every min{a,b,c} becomes min{min{a,b},c}.- Specified by:
expandAssociativeOperationsin classTerm
-
toLinearForm
Description copied from class:TermConverts this term into a linear normal form, i.e. into a sum of products of a constant and a variable.- Specified by:
toLinearFormin classTerm- Returns:
- a term in linear normal form.
- Throws:
IllegalArgumentException- if this term cannot be converted into a linear normal form.
-
toQuadraticForm
Description copied from class:TermReturn a quadratic form- Specified by:
toQuadraticFormin classTerm- Returns:
- a quadratic form
- Throws:
IllegalArgumentException- error
-
derive
Description copied from class:TermDifferentiates the term with respect to the given variable.- Specified by:
derivein classTerm- Parameters:
v- a variable.- Returns:
- the derivation of this term wrt. the given variable.
- Throws:
NonDifferentiableException- if the term cannot be differentiated.
-
isContinuous
Description copied from class:TermChecks whether this term is continuous in v.- Specified by:
isContinuousin classTerm- Parameters:
v- a variable- Returns:
- "true" iff this term is continuous in v.
-
simplify
Description copied from class:TermSimplifies this term in an equivalent way:
- Replaces products that contain a zero by the constant zero
- Removes a term one from products
- Removes a term zero from sums
- Aggregates constants in sums, products, and minimums
- Evaluates functional terms on constants
- Simplifies fractions where possible. -
toString
-