You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both pounders and manifold sampling are designed to utilize vector output.
Because this is not typical of most optimization methods; users might not return a vector.
If the objective returns a scalar, pounders.m and pounders.py will not error. When given a scalar, both will store m copies of that value for each row in its Fvec array. Pounders will converge, but likely (much) more slowly than if vector of m outputs was returned.
The text was updated successfully, but these errors were encountered:
Both pounders and manifold sampling are designed to utilize vector output.
Because this is not typical of most optimization methods; users might not return a vector.
If the objective returns a scalar,
pounders.m
andpounders.py
will not error. When given a scalar, both will storem
copies of that value for each row in itsFvec
array. Pounders will converge, but likely (much) more slowly than if vector ofm
outputs was returned.The text was updated successfully, but these errors were encountered: