bundles / scipy 1.17.1 / scipy / optimize / _shgo_lib / _complex / Complex
class
scipy.optimize._shgo_lib._complex:Complex
Signature
class Complex ( dim , domain = None , sfield = None , sfield_args = () , symmetry = None , constraints = None , workers = 1 ) Members
-
__call__ -
__init__ -
_split_edge -
connect_vertex_non_symm -
cyclic_product -
deg_simplex -
in_simplex -
refine -
refine_all -
refine_local_space -
refine_star -
triangulate -
vf_to_vv -
vpool
Summary
Base class for a simplicial complex described as a cache of vertices together with their connections.
Extended Summary
Important methods:
Domain triangulation:
Complex.triangulate, Complex.split_generation
Triangulating arbitrary points (must be traingulable,
may exist outside domain):
Complex.triangulate(sample_set)
Converting another simplicial complex structure data type to the
structure used in Complex (ex. OBJ wavefront)
Complex.convert(datatype, data)
Important objects:
HC.V: The cache of vertices and their connection HC.H: Storage structure of all vertex groups
Parameters
dim: intSpatial dimensionality of the complex R^dim
domain: list of tuples, optionalThe bounds [x_l, x_u]^dim of the hyperrectangle space ex. The default domain is the hyperrectangle [0, 1]^dim Note: The domain must be convex, non-convex spaces can be cut away from this domain using the non-linear g_cons functions to define any arbitrary domain (these domains may also be disconnected from each other)
sfieldA scalar function defined in the associated domain f: R^dim --> R
sfield_args: tupleAdditional arguments to be passed to
sfieldvfieldvfield_args: tupleAdditional arguments to be passed to vfield
symmetry: None or listSpecify if the objective function contains symmetric variables. The search space (and therefore performance) is decreased by up to O(n!) times in the fully symmetric case.
E.g. f(x) = (x_1 + x_2 + x_3) + (x_4)**2 + (x_5)**2 + (x_6)**2
In this equation x_2 and x_3 are symmetric to x_1, while x_5 and
x_6 are symmetric to x_4, this can be specified to the solver as:
symmetry = [0, # Variable 1
0, # symmetric to variable 1 0, # symmetric to variable 1 3, # Variable 4 3, # symmetric to variable 4 3, # symmetric to variable 4 ]
constraints: dict or sequence of dict, optionalConstraints definition. Function(s)
R**nin the formg(x) <= 0 applied as g : R^n -> R^m h(x) == 0 applied as h : R^n -> R^p
Each constraint is defined in a dictionary with fields:
type
type
fun
fun
jac
jac
args
args
Equality constraint means that the constraint function result is to be zero whereas inequality means that it is to be non-negative.constraints : dict or sequence of dict, optional Constraints definition. Function(s)
R**nin the formg(x) <= 0 applied as g : R^n -> R^m h(x) == 0 applied as h : R^n -> R^p
Each constraint is defined in a dictionary with fields:
type
type
fun
fun
jac
jac
args
args
Equality constraint means that the constraint function result is to be zero whereas inequality means that it is to be non-negative.
workers: int optionalUses
multiprocessing.Pool <multiprocessing>) to compute the fieldfunctions in parallel.
Aliases
-
scipy.optimize._shgo.Complex