Uses of Class
org.tweetyproject.math.term.Variable
-
Packages that use Variable Package Description org.tweetyproject.math.opt.problem org.tweetyproject.math.opt.rootFinder org.tweetyproject.math.opt.solver org.tweetyproject.math.term -
-
Uses of Variable in org.tweetyproject.math.opt.problem
Methods in org.tweetyproject.math.opt.problem that return types with arguments of type Variable Modifier and Type Method Description java.util.Set<Variable>ConstraintSatisfactionProblem. getVariables()Returns all variables of this problem.java.util.Set<Variable>OptimizationProblem. getVariables() -
Uses of Variable in org.tweetyproject.math.opt.rootFinder
Methods in org.tweetyproject.math.opt.rootFinder that return types with arguments of type Variable Modifier and Type Method Description java.util.Map<Variable,Term>RootFinder. getStartingPoint()Returns the starting point of this finder.java.util.Map<Variable,Term>BfgsRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)java.util.Map<Variable,Term>GradientDescentRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)java.util.Map<Variable,Term>HessianGradientDescentRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)java.util.Map<Variable,Term>NewtonRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)abstract java.util.Map<Variable,Term>OptimizationRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)abstract java.util.Map<Variable,Term>RootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)Determines the values for the variables appearing in the function such the function evaluates to zero.Method parameters in org.tweetyproject.math.opt.rootFinder with type arguments of type Variable Modifier and Type Method Description java.util.Map<Variable,Term>BfgsRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)java.util.Map<Variable,Term>GradientDescentRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)java.util.Map<Variable,Term>HessianGradientDescentRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)java.util.Map<Variable,Term>NewtonRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)abstract java.util.Map<Variable,Term>OptimizationRootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)abstract java.util.Map<Variable,Term>RootFinder. randomRoot(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)Determines the values for the variables appearing in the function such the function evaluates to zero.voidRootFinder. setStartingPoint(java.util.Map<Variable,Term> startingPoint)sets the starting point of this root finder.Constructor parameters in org.tweetyproject.math.opt.rootFinder with type arguments of type Variable Constructor Description OptimizationRootFinder(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)Creates a new root finder for the given starting point and the given (multi-dimensional) functionRootFinder(java.util.List<Term> functions, java.util.Map<Variable,Term> startingPoint)Creates a new root finder for the given starting point and the given (multi-dimensional) function -
Uses of Variable in org.tweetyproject.math.opt.solver
Methods in org.tweetyproject.math.opt.solver that return types with arguments of type Variable Modifier and Type Method Description java.util.Map<Variable,Term>IteratedLocalSearchOnConstrProb. bestNeighbor(java.util.Map<Variable,Term> currSol, int minIterations, int maxIterations, double threshold, Term t)java.util.Map<Variable,Term>SimulatedAnnealingOnConstrProb. chooseANeighbor(java.util.Map<Variable,Term> currSol, int minIterations, int maxIterations, double threshold, Term targetFunc)java.util.Map<Variable,Term>StochasticLocalSearchOnConstrProb. chooseANeighbor(java.util.Map<Variable,Term> currSol, int minIterations, int maxIterations, double threshold, Term targetFunc)java.util.Map<Variable,Term>TabuSearchOnConstrProb. chooseANeighbor(java.util.Map<Variable,Term> currSol, int minIterations, int maxIterations, double threshold, Term t)java.util.Map<Variable,Term>IteratedLocalSearchOnConstrProb. pertubate(java.util.Map<Variable,Term> currSol)changes the solution drastically to escape a local minimumjava.util.Map<Variable,Term>ApacheCommonsCMAESOptimizer. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>ApacheCommonsCMAESOptimizer. solve(Term t, int optimization_type)Returns the variable assignment that maximizes/minimizes the given term (which only contains variables with defined upper and lower bounds).java.util.Map<Variable,Term>ApacheCommonsNonLinearConjugateGradientOptimizer. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>ApacheCommonsSimplex. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>BfgsSolver. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>CombinatoricsSolver. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>GlpkSolver. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>GradientDescent. solve(GeneralConstraintSatisfactionProblem constraintSatisfactionProblem)java.util.Map<Variable,Term>HessianGradientDescent. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>IteratedLocalSearchOnConstrProb. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>LagrangeSolver. solve(GeneralConstraintSatisfactionProblem prob)java.util.Map<Variable,Term>LpSolve. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>OctaveSqpSolver. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>SimpleGeneticOptimizationSolver. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>SimpleGeneticOptimizationSolver. solve(Term t, int optimization_objective)Returns the variable assignment that maximizes/minimizes the given term (which only contains variables with defined upper and lower bounds).java.util.Map<Variable,Term>SimulatedAnnealingOnConstrProb. solve(GeneralConstraintSatisfactionProblem problem)abstract java.util.Map<Variable,Term>Solver. solve(GeneralConstraintSatisfactionProblem problem)Computes a solution to the given constraint satisfaction or optimization problem, i.e.java.util.Map<Variable,Term>StochasticLocalSearchOnConstrProb. solve(GeneralConstraintSatisfactionProblem problem)java.util.Map<Variable,Term>TabuSearchOnConstrProb. solve(GeneralConstraintSatisfactionProblem problem)Method parameters in org.tweetyproject.math.opt.solver with type arguments of type Variable Modifier and Type Method Description java.util.Map<Variable,Term>IteratedLocalSearchOnConstrProb. bestNeighbor(java.util.Map<Variable,Term> currSol, int minIterations, int maxIterations, double threshold, Term t)java.util.Map<Variable,Term>SimulatedAnnealingOnConstrProb. chooseANeighbor(java.util.Map<Variable,Term> currSol, int minIterations, int maxIterations, double threshold, Term targetFunc)java.util.Map<Variable,Term>StochasticLocalSearchOnConstrProb. chooseANeighbor(java.util.Map<Variable,Term> currSol, int minIterations, int maxIterations, double threshold, Term targetFunc)java.util.Map<Variable,Term>TabuSearchOnConstrProb. chooseANeighbor(java.util.Map<Variable,Term> currSol, int minIterations, int maxIterations, double threshold, Term t)doubleIteratedLocalSearchOnConstrProb. evaluate(java.util.Map<Variable,Term> sol, Term minT)java.util.Map<Variable,Term>IteratedLocalSearchOnConstrProb. pertubate(java.util.Map<Variable,Term> currSol)changes the solution drastically to escape a local minimumConstructor parameters in org.tweetyproject.math.opt.solver with type arguments of type Variable Constructor Description BfgsSolver(java.util.Map<Variable,Term> startingPoint)GradientDescent(java.util.Map<Variable,Term> startingPoint)Creates a new gradient descent solverHessianGradientDescent(java.util.Map<Variable,Term> startingPoint)LagrangeSolver(java.util.Map<Variable,Term> startingPoint)Creates a new Lagrange solver for the given optimization problemLagrangeSolver(java.util.Set<java.util.Map<Variable,Term>> startingPoints)Creates a new Lagrange solver for the given optimization problem -
Uses of Variable in org.tweetyproject.math.term
Subclasses of Variable in org.tweetyproject.math.term Modifier and Type Class Description classBinaryVariableThis class models a binary variable as a mathematical term.classFloatVariableThis class models an float variable as a mathematical term.classIntegerVariableThis class models an integer variable as a mathematical term.Methods in org.tweetyproject.math.term that return types with arguments of type Variable Modifier and Type Method Description java.util.Set<Variable>AssociativeOperation. getVariables()java.util.Set<Variable>Constant. getVariables()java.util.Set<Variable>Difference. getVariables()java.util.Set<Variable>Fraction. getVariables()java.util.Set<Variable>FunctionalTerm. getVariables()abstract java.util.Set<Variable>Term. getVariables()Returns all variables in this term.java.util.Set<Variable>Variable. getVariables()Methods in org.tweetyproject.math.term with parameters of type Variable Modifier and Type Method Description TermAbsoluteValue. derive(Variable v)TermConstant. derive(Variable v)TermDifference. derive(Variable v)TermExp. derive(Variable v)TermFraction. derive(Variable v)TermLogarithm. derive(Variable v)TermMaximum. derive(Variable v)TermMinimum. derive(Variable v)TermPower. derive(Variable v)TermProduct. derive(Variable v)TermRoot. derive(Variable v)TermSum. derive(Variable v)abstract TermTerm. derive(Variable v)Differentiates the term with respect to the given variable.TermVariable. derive(Variable v)booleanAbsoluteValue. isContinuous(Variable v)booleanConstant. isContinuous(Variable v)booleanDifference. isContinuous(Variable v)booleanExp. isContinuous(Variable v)booleanFraction. isContinuous(Variable v)booleanLogarithm. isContinuous(Variable v)booleanMaximum. isContinuous(Variable v)booleanMinimum. isContinuous(Variable v)booleanPower. isContinuous(Variable v)booleanProduct. isContinuous(Variable v)booleanRoot. isContinuous(Variable v)booleanSum. isContinuous(Variable v)abstract booleanTerm. isContinuous(Variable v)Checks whether this term is continuous in v.booleanVariable. isContinuous(Variable v)Method parameters in org.tweetyproject.math.term with type arguments of type Variable Modifier and Type Method Description static java.util.List<java.lang.Double>Term. evaluateVector(java.util.List<Term> functions, java.util.Map<Variable,? extends Term> mapping)Evaluates each function in the given list with the given values for variables.TermTerm. replaceAllTerms(double[] values, java.util.List<Variable> variables)Replaces terms according to the given map.
-