Interface TimeDependentImportanceMeasure<T>
-
- Type Parameters:
T
- The type of the variables of the system
- All Superinterfaces:
ImportanceMeasure
public interface TimeDependentImportanceMeasure<T> extends ImportanceMeasure
TheTimeDependentImportanceMeasure
is used to assign a importance measure value to each variable T of the system at a specific time t.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<T,java.lang.Double>
calculate(double time)
Assign a importance value to each variable T of the system at a specific time t.
-
-
-
Method Detail
-
calculate
java.util.Map<T,java.lang.Double> calculate(double time)
Assign a importance value to each variable T of the system at a specific time t.- Parameters:
time
- Time t at which the importance value of the variables is calculated.- Returns:
- results Map of variables and their respective importance values at time t.
-
-