C# Class Grasp.CompositeCalculator

A series of calculators which applies to GraspRuntimes
Inheritance: ICalculator
Exibir arquivo Open project: bwatts/Grasp

Public Methods

Method Description
ApplyCalculation ( GraspRuntime runtime ) : void

Applies the series of calculators to the specified runtime

CompositeCalculator ( ) : System

Initializes a composite calculator with the specified calculators

CompositeCalculator ( IEnumerable calculators ) : System

Initializes a composite calculator with the specified calculators

Method Details

ApplyCalculation() public method

Applies the series of calculators to the specified runtime
public ApplyCalculation ( GraspRuntime runtime ) : void
runtime GraspRuntime A runtime to which the series of calculators is applied
return void

CompositeCalculator() public method

Initializes a composite calculator with the specified calculators
public CompositeCalculator ( ) : System
return System

CompositeCalculator() public method

Initializes a composite calculator with the specified calculators
public CompositeCalculator ( IEnumerable calculators ) : System
calculators IEnumerable The series of calculators to be applied to runtimes
return System