Skip to content

Commit

Permalink
merged sim_clean into swig_integrator_interface
Browse files Browse the repository at this point in the history
  • Loading branch information
FreyJo committed Nov 9, 2018
2 parents 56f0dcb + 54e77d7 commit 8835b6f
Show file tree
Hide file tree
Showing 37 changed files with 2,482 additions and 4,007 deletions.
1 change: 0 additions & 1 deletion Makefile
Expand Up @@ -55,7 +55,6 @@ OBJS += acados/sim/sim_collocation_utils.o
OBJS += acados/sim/sim_erk_integrator.o
OBJS += acados/sim/sim_irk_integrator.o
OBJS += acados/sim/sim_lifted_irk_integrator.o
OBJS += acados/sim/sim_new_lifted_irk_integrator.o
OBJS += acados/sim/sim_common.o
OBJS += acados/sim/sim_gnsf.o
# utils
Expand Down
1 change: 0 additions & 1 deletion acados/sim/Makefile
Expand Up @@ -8,7 +8,6 @@ OBJS += sim_collocation_utils.o
OBJS += sim_erk_integrator.o
OBJS += sim_common.o
OBJS += sim_lifted_irk_integrator.o
OBJS += sim_new_lifted_irk_integrator.o
OBJS += sim_irk_integrator.o
OBJS += sim_gnsf.o

Expand Down
2 changes: 0 additions & 2 deletions acados/sim/sim_common.h
Expand Up @@ -37,8 +37,6 @@ typedef enum
{
// ERK and LIFTED_ERK
EXPL_ODE_FUN,
EXPL_ODE_JAC, // TODO(all): expl_ode_jac_x
// TODO(oj): EXPL_ODE_JAC only used in old lifted_irk -> REMOVE!
EXPL_ODE_HES, // wrt x and u ???
EXPL_VDE_FOR,
EXPL_VDE_ADJ,
Expand Down
2 changes: 0 additions & 2 deletions acados/sim/sim_erk_integrator.c
Expand Up @@ -142,8 +142,6 @@ int sim_erk_model_set_function(void *model_, sim_function_t fun_type, void *fun)
case EXPL_ODE_FUN:
model->expl_ode_fun = (external_function_generic *) fun;
break;
case EXPL_ODE_JAC: // TODO(oj): remove NOT used!
break;
case EXPL_ODE_HES:
model->expl_ode_hes = (external_function_generic *) fun;
break;
Expand Down

0 comments on commit 8835b6f

Please sign in to comment.