C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
OptimizationResult.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
3
5{
8 {
10 [DataMember(Order = 10)]
11 public Dictionary<string, double> objectives { get; set; }
12
14 [DataMember(Order = 11)]
15 public Dictionary<string, double> constraints { get; set; }
16
20 [DataMember(Order = 12)]
21 public bool feasible { get; set; }
22 }
23}
Base class used by all types and resources.
Definition APIType.cs:8
Object to map metrics on the initial portfolio.
Dictionary< string, double > constraints
The set of constraint function results for this candidate.
Dictionary< string, double > objectives
The set of objective function results for this candidate.
bool feasible
The feasibility of the candidate based on the constraints evaluated by the optimization algorithm for...