Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake
Submodule cmake updated 375 files
2 changes: 1 addition & 1 deletion dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ find_package(example-robot-data 4.0.9 REQUIRED)
ADD_PROJECT_DEPENDENCY(OpenMP REQUIRED)
ADD_PROJECT_DEPENDENCY(proxsuite REQUIRED)
ADD_PROJECT_DEPENDENCY(pinocchio REQUIRED)
ADD_PROJECT_DEPENDENCY(aligator REQUIRED)
ADD_PROJECT_DEPENDENCY(aligator 0.13.0 REQUIRED)

function(get_ndcurves)
find_package(ndcurves QUIET)
Expand Down
6,401 changes: 2,594 additions & 3,807 deletions pixi.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pkg-config = ">=0.29.2"
libboost-python-devel = ">=1.80.0"
python = "3.11"
eigenpy = ">=3.10.1"
aligator = ">=0.10"
aligator = ">=0.13"
benchmark = ">=1.8.0"
pytest = ">=8.3.0"
matplotlib = ">=3.9"
Expand All @@ -44,9 +44,9 @@ configure = { cmd = [
"-DBUILD_TESTING=ON",
"-DGENERATE_PYTHON_STUBS=ON",
] }
build = { cmd = "cmake --build build --target all", depends_on = ["configure"] }
build = { cmd = "cmake --build build --target all", depends-on = ["configure"] }
clean = { cmd = "rm -rf build" }
test = { cmd = "ctest --test-dir build --output-on-failure", depends_on = [
test = { cmd = "ctest --test-dir build --output-on-failure", depends-on = [
"build",
] }

Expand Down
2 changes: 1 addition & 1 deletion src/fulldynamics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ namespace simple_mpc
state_id.push_back(i);
}
FunctionSliceXpr state_slice = FunctionSliceXpr(state_fn, state_id);
stm.addConstraint(state_slice, BoxConstraint(-settings_.qmax, -settings_.qmin));
stm.addConstraint(state_slice, BoxConstraint(settings_.qmin, settings_.qmax));
}

for (auto const & name : model_handler_.getFeetNames())
Expand Down
2 changes: 1 addition & 1 deletion src/kinodynamics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace simple_mpc
state_id.push_back(i);
}
FunctionSliceXpr state_slice = FunctionSliceXpr(state_fn, state_id);
stm.addConstraint(state_slice, BoxConstraint(-settings_.qmax, -settings_.qmin));
stm.addConstraint(state_slice, BoxConstraint(settings_.qmin, settings_.qmax));
}

Motion v_ref = Motion::Zero();
Expand Down
Loading