OrderProblem

 
OrderProblem = class OrderProblem(Problem)
    OrderProblem(xdata=None, weights=None, copy=None)
 
An OrderProblem needs to optimize the order of a set of nodes.
the nodes are given by the x variable; the order by the parameters p.
 
The result of the function for certain x and p is given by
`problem.result( x, p )`
 
This class is a base class. Further specializations will define the
result method.
 
Attributes
----------
parameters : array_like
    to be optimized in TBD ways
npbase : int
    number of params in the base model
ndim : int
    number of dimensions of input. (default : 1)
 
Author :         Do Kester
 
 
Method resolution order:
OrderProblem
Problem
builtins.object

Constructor:
OrderProblem( xdata=None, weights=None, copy=None )
OrderProblem Constructor.
<br>
Parameters
----------
xdata : array_like of shape [np,ndim]
    the nodes to be visited
weights : array_like
    weights on the arrival nodes
copy : BaseProblem
    to be copied
Methods defined here:
baseName()
copy()
Return a copy.
isDynamic()
myDistribution()
myEngines()
myStartEngine()

Methods inherited from Problem: