-
We discussed with @frapac how to create a complementarity constraint type.
One idea would be to add a type
```julia
struct Complementarity
-
Let's have a simple example which can be coded directly:
```julia
using NLsolve
function f!(F, x)
F[1] = x[1]^2 - 4.0
F[2] = x[2]^2 - 4.0
end
nlsolve(f!, [4.0; 4.0], autodiff=:forward…
-
A much requested feature here at DTU Biosustain. Any particular preference if this should be part of cobrapy or a separate package? I am leaning more towards the first.
-
Improvements to the BufferStock DARKolo:
- [x] Commit modifications made at NumFOCUS summit
- [x] Explain each part of the dolang model
- [x] Bring the section on "Upper and Lower Limits of the M…
-
For `Utilities.IO.Python27`, setting the `PYTHONPATH` fails in some linux installations.
-
When I'm just cImport:ing a header it gets included in the generated C code like this:
```nim
# in Nim code
cImport("include/header1.h")
```
```c
// in C code
#include "path to header1.h"
```
…
-
Creating the FMU in JModelica does no longer include the weather data file.
The problem was introduced between b33879145490f8cb88c467ff076dd7ddbbbe2139 and
1a62197b7d9320908a0139ec62e092e46d023650
…
-
_Original ticket http://projects.scipy.org/scipy/ticket/478 on 2007-08-11 by trac user friisj, assigned to unknown._
This patch adds a new infodict() method to trunk/Lib/integrate/ode.py, making it p…
-
```julia
using NLsolve
function f!(x, fvec)
fvec[1] = (x[1]+3)*(x[2]^3-7)+18
fvec[2] = sin(x[2]*exp(x[1])-1)
end
function g!(x, fjac)
fjac[1, 1] = x[2]^3-7
fjac[1, 2] = 3*x…
-
We agreed that stratified plane Couette flow could be a test case against which we can verify the implementation of AMD in PR #309, although the published results [Vreugdenhil & Taylor (2018)] use a s…