proxtoolbox.Problems.problems

Created on Wed Oct 15 11:36:27 2014

@author: stefan

Classes

Problem([config]) Generic interface for ProxToolbox problems
class proxtoolbox.Problems.problems.Problem(config={})[source]

Bases: object

Generic interface for ProxToolbox problems

Initialization method

Parameters:
config : dict, optional

Dictionary containing problem parameters. If unspecified, a default configuration will be used.

_postsolve()[source]

Postprocessing data. This procedure is called after the problem has been solved.

_presolve()[source]

Preprocessing data. This procedure is called before the problem will be solved.

_solve()[source]

This procedure solves the problem.

save()[source]

This procedure stores input and output data.

show()[source]

This procedure realizes textual and/or graphical output of the Problem’s result.

solve()[source]

Solves the problem, as specified by _presolve, _solve and _postsolve.

This is NOT intended to be overloaded. Overload _presolve, _solve and _postsolve instead.