-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from ami-iit/humanoidPlanning_base
Modifications and improvements to the base functionalities
- Loading branch information
Showing
22 changed files
with
1,738 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,3 +130,6 @@ dmypy.json | |
|
||
# Pycharm files | ||
.idea/ | ||
|
||
# VSCode files | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,30 @@ | ||
from . import base, integrators | ||
import hippopt.base.opti_callback as opti_callback | ||
|
||
from .base.dynamics import Dynamics, TypedDynamics, dot | ||
from .base.multiple_shooting_solver import MultipleShootingSolver | ||
from .base.opti_solver import OptiFailure, OptiSolver | ||
from .base.optimal_control_problem import OptimalControlProblem | ||
from .base.optimal_control_problem import ( | ||
OptimalControlProblem, | ||
OptimalControlProblemInstance, | ||
) | ||
from .base.optimization_object import ( | ||
CompositeType, | ||
OptimizationObject, | ||
StorageType, | ||
TimeExpansion, | ||
TOptimizationObject, | ||
default_composite_field, | ||
default_storage_field, | ||
default_storage_metadata, | ||
time_varying_metadata, | ||
) | ||
from .base.optimization_problem import OptimizationProblem | ||
from .base.optimization_problem import OptimizationProblem, OptimizationProblemInstance | ||
from .base.optimization_solver import SolutionNotAvailableException | ||
from .base.parameter import Parameter, TParameter | ||
from .base.problem import ExpressionType, ProblemNotSolvedException | ||
from .base.parameter import OverridableParameter, Parameter, TParameter | ||
from .base.problem import ExpressionType, Output, ProblemNotSolvedException | ||
from .base.single_step_integrator import ( | ||
SingleStepIntegrator, | ||
TSingleStepIntegrator, | ||
step, | ||
) | ||
from .base.variable import TVariable, Variable | ||
from .integrators.forward_euler import ForwardEuler | ||
from .integrators.implicit_trapezoid import ImplicitTrapezoid | ||
from .base.variable import OverridableVariable, TVariable, Variable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.