This file contains hidden or 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
| from casadi import * | |
| x = MX.sym('x') | |
| c = MX.sym('c') | |
| z0 = conditional(c, [0, 1], 3) | |
| #z0 = conditional(c, [x, x], 3) # works | |
| f = z0 + x | |
| #f = z0 # works |
This file contains hidden or 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
| from casadi import * | |
| x = MX.sym('x') | |
| c = MX.sym('c') | |
| z0 = conditional(c, [0, 1], 3) | |
| #z0 = conditional(c, [x, x], 3) # works | |
| f = z0 + x | |
| #f = z0 # works |
This file contains hidden or 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
| {-# OPTIONS_GHC -Wall #-} | |
| {-# LANGUAGE ScopedTypeVariables #-} | |
| import Data.List ( intercalate ) | |
| import qualified Data.Vector as V | |
| import qualified Data.Vector.Storable as SV | |
| import qualified Data.Vector.Storable.Mutable as SVM | |
| import Data.SBV | |
| import Data.SBV.Tools.CodeGen |
This file contains hidden or 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
| WARNING: Stepsize is 0.000000000000000e+00 | |
| ################# qpOASES -- QP NO. 1 ################## | |
| Iter | StepLength | Info | nFX | |
| ----------+------------------+------------------+--------- | |
| 0 | 0.000000e+00 | REM BND 0 | 20 | |
| 1 | 9.750226e-01 | REM BND 13 | 19 | |
| 2 | 9.006699e-01 | REM BND 14 | 18 |
OlderNewer