Uses of Class
clarion.system.Value

Packages that use Value
clarion.system   
clarion.tools   
 

Uses of Value in clarion.system
 

Fields in clarion.system declared as Value
private  Value Drive.Deficit
          The drive deficit represented as a value object.
private  Value Drive.InitialDeficit
          The initial (pre-decay) drive deficit.
 

Fields in clarion.system with type parameters of type Value
private  java.util.LinkedHashMap<java.lang.Object,Value> Goal.Relevance
          The relevance of the drives to this goal.
 

Methods in clarion.system that return Value
 Value Value.clone()
          Clones the value.
 Value Goal.getRelevance(java.lang.Object ID)
          Gets the relevance to the goal of the drive with the specified ID.
 Value Dimension.put(java.lang.Object key, Value val)
          Puts the value in the dimension as long as the value is not already in the dimension.
 

Methods in clarion.system that return types with arguments of type Value
 java.util.Collection<Value> DimensionValueCollection.getValueCollection()
          Gets a collection containing all of the values within the dimension-value collection.
 

Methods in clarion.system with parameters of type Value
 int Value.compareTo(Value val)
          Compares the activation of this value to the specified value.
 Value Dimension.put(java.lang.Object key, Value val)
          Puts the value in the dimension as long as the value is not already in the dimension.
 void AbstractImplicitModule.setInput(java.lang.Object ID, Value val)
          Sets the activation of the input node for the dimension with the specified ID to the activation of the specified value.
 void AbstractImplicitModule.setInput(Value val)
          Sets the activation of the input nodes that equal the specified value to the activation of the specified value.
 

Method parameters in clarion.system with type arguments of type Value
 void MS.initUserDefinedPersonality(java.util.Collection<Value> deficits)
          Initializes the MS with a user defined personality.
 void Dimension.putAll(java.util.Map<? extends java.lang.Object,? extends Value> map)
          Puts all of the values in the map into the dimension as long as the values are not already in the dimension.
 void Goal.setRelevances(java.util.Collection<Value> Rel)
          Sets the relevance to this goal for the drives with IDs equal to the values in the specified collection.
 

Constructor parameters in clarion.system with type arguments of type Value
Dimension(java.lang.Object id, java.util.Collection<? extends Value> vals)
          Initializes the dimension with the specified ID and collection of values.
Dimension(java.lang.Object id, java.util.Map<? extends java.lang.Object,? extends Value> map)
          Initializes the dimension with the specified ID and map of values.
 

Uses of Value in clarion.tools
 

Subclasses of Value in clarion.tools
 class Range
          This class implements a range for use within the TrainableImplicitModulePreTrainer class.
 

Methods in clarion.tools with parameters of type Value
private  void TrainableImplicitModulePreTrainer.innerLoop(AbstractTrainableImplicitModule target, AbstractImplicitModule trainer, java.util.ListIterator<Dimension> dim, java.util.ListIterator<? extends Value> val, Dimension d, Value v, TrainableImplicitModulePreTrainer.SumSquaredErrorTracker sqe)
          The inner loop of the dataRecursor method.
 

Method parameters in clarion.tools with type arguments of type Value
private  void TrainableImplicitModulePreTrainer.dataRecursor(AbstractTrainableImplicitModule target, AbstractImplicitModule trainer, java.util.ListIterator<Dimension> dim, java.util.ListIterator<? extends Value> val, TrainableImplicitModulePreTrainer.SumSquaredErrorTracker sqe)
          Recursive method that iterates over the dimensions of a dimension-value collection (from the data set and trains the specified target implicit module based on the outputs from the specified trainer implicit module.
private  void TrainableImplicitModulePreTrainer.innerLoop(AbstractTrainableImplicitModule target, AbstractImplicitModule trainer, java.util.ListIterator<Dimension> dim, java.util.ListIterator<? extends Value> val, Dimension d, Value v, TrainableImplicitModulePreTrainer.SumSquaredErrorTracker sqe)
          The inner loop of the dataRecursor method.