Skip to content

Commit f21b87a

Browse files
committed
execution
1 parent 17b4b7f commit f21b87a

4 files changed

Lines changed: 50 additions & 6 deletions

File tree

docs/en/releases/unreleased.ipynb

Lines changed: 22 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/ja/releases/unreleased.ipynb

Lines changed: 22 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

markdowns/en/releases/unreleased.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ def problem(problem):
4949
a = problem.Float(shape=(N, M))
5050
x = problem.BinaryVar(shape=N)
5151
Sums = problem.NamedExpr(jm.genarray(a[i, j] * x[i] for i, j in (N, M)))
52+
53+
54+
problem
5255
```
5356

5457
Comprehensions used with `jm.genarray` MUST satisfy the following conditions:

markdowns/ja/releases/unreleased.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ def problem(problem):
4949
a = problem.Float(shape=(N, M))
5050
x = problem.BinaryVar(shape=N)
5151
Sums = problem.NamedExpr(jm.genarray(a[i, j] * x[i] for i, j in (N, M)))
52+
53+
54+
problem
5255
```
5356

5457
`jm.genarray` で使える内包表記は以下の条件に従う必要があります:

0 commit comments

Comments
 (0)