LightJason - AgentSpeak(L++)
org.lightjason.agentspeak.action.builtin.math.linearprogram.CValueConstraint Class Reference

add a linear value constraint to the LP. More...

+ Inheritance diagram for org.lightjason.agentspeak.action.builtin.math.linearprogram.CValueConstraint:
+ Collaboration diagram for org.lightjason.agentspeak.action.builtin.math.linearprogram.CValueConstraint:

Public Member Functions

final IFuzzyValue< Boolean > execute (final boolean p_parallel, @Nonnull final IContext p_context, @Nonnull final List< ITerm > p_argument, @Nonnull final List< ITerm > p_return)
 defines a plan-body operation More...
 
final int minimalArgumentNumber ()
 minimum number of arguments More...
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.builtin.math.linearprogram.IConstraint
 IConstraint ()
 ctor More...
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
final IPath name ()
 returns the name with path of the action More...
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.IBaseAction
final boolean equals (final Object p_object)
 
final int hashCode ()
 
final String toString ()
 
- Public Member Functions inherited from org.lightjason.agentspeak.action.IAction
default Stream< IVariable<?> > variables ()
 returns a stream with all used variables More...
 

Static Private Attributes

static final long serialVersionUID = 2316665584839205362L
 serial id More...
 

Additional Inherited Members

- Public Attributes inherited from org.lightjason.agentspeak.action.IAction
long serialVersionUID = -6374480398439703170L
 serial id More...
 
- Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.math.linearprogram.IConstraint
final Relationship getRelation ( @Nonnull final String p_symbol)
 returns the enum of a relationship by a string value More...
 
- Protected Member Functions inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
 IBuiltinAction ()
 ctor More...
 
 IBuiltinAction (final int p_length)
 ctor More...
 
- Static Protected Attributes inherited from org.lightjason.agentspeak.action.builtin.IBuiltinAction
static final Logger LOGGER = CCommon.logger( IBuiltinAction.class )
 logger More...
 
- Static Protected Attributes inherited from org.lightjason.agentspeak.action.IBaseAction
static final Logger LOGGER = org.lightjason.agentspeak.common.CCommon.logger( IAction.class )
 logger More...
 

Detailed Description

The action create a value constaint with one of the definitions:

  • \( \sum_{i=1} c_i \cdot x_i = v \)
  • \( \sum_{i=1} c_i \cdot x_i \geq v \)
  • \( \sum_{i=1} c_i \cdot x_i \leq v \)

the first \( n-2 \) arguments are the \( c_i \), the \( n-1 \) argument ist the relation symbol ( \( = \), \( \geq \) or \( \leq \)) as string and the last value is the \( v \) value and the action never fails

math/linearprogram/valueconstaint( LP, [2,5,[7,8,[9]]], "<", 100 );
See also
https://en.wikipedia.org/wiki/Linear_programming
http://commons.apache.org/proper/commons-math/userguide/optimization.html

Definition at line 61 of file CValueConstraint.java.

Member Function Documentation

◆ execute()

final IFuzzyValue<Boolean> org.lightjason.agentspeak.action.builtin.math.linearprogram.CValueConstraint.execute ( final boolean  p_parallel,
@Nonnull final IContext  p_context,
@Nonnull final List< ITerm p_argument,
@Nonnull final List< ITerm p_return 
)
Parameters
p_parallelparallel execution
p_contextcurrent execution context
p_argumentparameter of the action
p_returnreturn values
Returns
fuzzy boolean

Implements org.lightjason.agentspeak.language.execution.IExecution.

Definition at line 77 of file CValueConstraint.java.

References org.lightjason.agentspeak.language.fuzzy.CFuzzyValue< T >.from(), and org.lightjason.agentspeak.action.builtin.math.linearprogram.IConstraint.getRelation().

Referenced by org.lightjason.agentspeak.action.builtin.TestCActionMathLinearprogram.valueconstraint().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ minimalArgumentNumber()

final int org.lightjason.agentspeak.action.builtin.math.linearprogram.CValueConstraint.minimalArgumentNumber ( )
Returns
number of minimal arguments

Implements org.lightjason.agentspeak.action.IAction.

Definition at line 70 of file CValueConstraint.java.

Member Data Documentation

◆ serialVersionUID

final long org.lightjason.agentspeak.action.builtin.math.linearprogram.CValueConstraint.serialVersionUID = 2316665584839205362L
staticprivate

Definition at line 66 of file CValueConstraint.java.