Class SimulateController
Conroller for running a simulation of a Decision Model.
Inherited Members
Namespace: Quantellia.WMServer.Simulation
Assembly: WMServer.dll
Syntax
[Route("simulate")]
[ApiController]
[Authorize]
public class SimulateController : ControllerBase
Methods
Simulate(string, SimulationArgs)
Run a simulation of a DecisionModel
Declaration
[HttpPost("{id}")]
public Task<ActionResult<Dictionary<string, ElementValue>>> Simulate(string id, SimulationArgs args)
Parameters
Type | Name | Description |
---|---|---|
string | id | The ID of the decision model to run. |
SimulationArgs | args | The arguments that control the simulation process. |
Returns
Type | Description |
---|---|
Task<ActionResult<Dictionary<string, ElementValue>>> |