desdeo.result

This package contains classes for representing results obtained from running the methods in desdeo.method.

class desdeo.result.ResultSet(data=None, meta=None)[source]

Bases: object

Class to store sets of results.

__dict__ = mappingproxy({'__module__': 'desdeo.result.Result', '__doc__': '\n Class to store sets of results.\n ', '__init__': <function ResultSet.__init__>, 'decision_vars': <property object>, 'objective_vars': <property object>, 'meta': <property object>, 'items': <property object>, '__repr__': <function ResultSet.__repr__>, '__dict__': <attribute '__dict__' of 'ResultSet' objects>, '__weakref__': <attribute '__weakref__' of 'ResultSet' objects>})
__init__(data=None, meta=None)[source]

Construct a Result from data, such as a list of (decision, objective) pairs.

Return type

None

__module__ = 'desdeo.result.Result'
__repr__()[source]

Return repr(self).

__weakref__

list of weak references to the object (if defined)

property decision_vars
property items
property meta
property objective_vars