Module cma :: Class BoundNone
[hide private]
[frames] | no frames]

Class BoundNone

source code

         object --+    
                  |    
BoundaryHandlerBase --+
                      |
                     BoundNone

Instance Methods [hide private]
 
__init__(self, bounds=None)
bounds are not copied, but possibly modified and put into a normalized form: bounds can be None or [lb, ub] where lb and ub are either None or a vector (which can have None entries).
source code
 
is_in_bounds(self, x)
not yet tested
source code

Inherited from BoundaryHandlerBase: __call__, get_bounds, has_bounds, inverse, repair, to_dim_times_two, update

Inherited from BoundaryHandlerBase (private): _get_bounds

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, bounds=None)
(Constructor)

source code 

bounds are not copied, but possibly modified and put into a normalized form: bounds can be None or [lb, ub] where lb and ub are either None or a vector (which can have None entries).

Generally, the last entry is recycled to compute bounds for any dimension.

Overrides: object.__init__
(inherited documentation)

is_in_bounds(self, x)

source code 
not yet tested
Overrides: BoundaryHandlerBase.is_in_bounds
(inherited documentation)