Skip to content
Snippets Groups Projects
Commit c6b8b86f authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler Committed by dune-community-bulldozer[bot]
Browse files

[python|bindings] bind some more meaningful dimensions

parent 499d1881
No related branches found
No related tags found
No related merge requests found
...@@ -85,23 +85,20 @@ PYBIND11_MODULE(_functions, m) ...@@ -85,23 +85,20 @@ PYBIND11_MODULE(_functions, m)
bind_ConstantFunction<1, 1, 1>(m); bind_ConstantFunction<1, 1, 1>(m);
bind_ConstantFunction<1, 2, 1>(m); bind_ConstantFunction<1, 2, 1>(m);
bind_ConstantFunction<1, 2, 2>(m);
bind_ConstantFunction<1, 3, 1>(m); bind_ConstantFunction<1, 3, 1>(m);
bind_ConstantFunction<1, 4, 1>(m);
bind_ConstantFunction<1, 1, 3>(m);
bind_ConstantFunction<1, 3, 3>(m); bind_ConstantFunction<1, 3, 3>(m);
bind_ConstantFunction<2, 1, 1>(m); bind_ConstantFunction<2, 1, 1>(m);
bind_ConstantFunction<2, 2, 1>(m); bind_ConstantFunction<2, 2, 1>(m);
bind_ConstantFunction<2, 2, 2>(m);
bind_ConstantFunction<2, 3, 1>(m); bind_ConstantFunction<2, 3, 1>(m);
bind_ConstantFunction<2, 4, 1>(m);
bind_ConstantFunction<2, 1, 3>(m);
bind_ConstantFunction<2, 3, 3>(m); bind_ConstantFunction<2, 3, 3>(m);
bind_ConstantFunction<3, 1, 1>(m); bind_ConstantFunction<3, 1, 1>(m);
bind_ConstantFunction<3, 2, 1>(m); bind_ConstantFunction<3, 2, 1>(m);
bind_ConstantFunction<3, 2, 2>(m);
bind_ConstantFunction<3, 3, 1>(m); bind_ConstantFunction<3, 3, 1>(m);
bind_ConstantFunction<3, 4, 1>(m);
bind_ConstantFunction<3, 1, 3>(m);
bind_ConstantFunction<3, 3, 3>(m); bind_ConstantFunction<3, 3, 3>(m);
bind_IndicatorFunction<1, 1, 1>(m); bind_IndicatorFunction<1, 1, 1>(m);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment