jijmodeling 2.0.0a2__cp38-abi3-macosx_10_16_x86_64.whl → 2.0.0a3__cp38-abi3-macosx_10_16_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of jijmodeling might be problematic. Click here for more details.
- jijmodeling/__init__.pyi +323 -95
- jijmodeling/_jijmodeling.abi3.so +0 -0
- {jijmodeling-2.0.0a2.dist-info → jijmodeling-2.0.0a3.dist-info}/METADATA +1 -1
- jijmodeling-2.0.0a3.dist-info/RECORD +9 -0
- jijmodeling-2.0.0a2.dist-info/RECORD +0 -9
- {jijmodeling-2.0.0a2.dist-info → jijmodeling-2.0.0a3.dist-info}/WHEEL +0 -0
- {jijmodeling-2.0.0a2.dist-info → jijmodeling-2.0.0a3.dist-info}/licenses/LICENSE.txt +0 -0
jijmodeling/__init__.pyi
CHANGED
|
@@ -153,70 +153,148 @@ class DecisionVar:
|
|
|
153
153
|
def __repr__(self) -> builtins.str:
|
|
154
154
|
...
|
|
155
155
|
|
|
156
|
-
def
|
|
156
|
+
def __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
|
|
157
157
|
...
|
|
158
158
|
|
|
159
|
-
def
|
|
159
|
+
def __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
|
|
160
160
|
...
|
|
161
161
|
|
|
162
|
-
def
|
|
162
|
+
def __add__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
163
163
|
...
|
|
164
164
|
|
|
165
|
-
def
|
|
165
|
+
def __radd__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
166
166
|
...
|
|
167
167
|
|
|
168
|
-
def
|
|
168
|
+
def __sub__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
169
169
|
...
|
|
170
170
|
|
|
171
|
-
def
|
|
171
|
+
def __rsub__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
172
172
|
...
|
|
173
173
|
|
|
174
|
-
def
|
|
174
|
+
def __mul__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
175
175
|
...
|
|
176
176
|
|
|
177
|
-
def
|
|
177
|
+
def __rmul__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
178
178
|
...
|
|
179
179
|
|
|
180
|
-
def
|
|
180
|
+
def __truediv__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
181
181
|
...
|
|
182
182
|
|
|
183
|
-
def
|
|
183
|
+
def __rtruediv__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
184
184
|
...
|
|
185
185
|
|
|
186
|
-
def
|
|
186
|
+
def __mod__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
187
187
|
...
|
|
188
188
|
|
|
189
|
-
def
|
|
189
|
+
def __rmod__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
190
190
|
...
|
|
191
191
|
|
|
192
|
-
def
|
|
192
|
+
def min(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
193
193
|
...
|
|
194
194
|
|
|
195
|
-
def
|
|
195
|
+
def max(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
196
196
|
...
|
|
197
197
|
|
|
198
|
-
def
|
|
198
|
+
def __neg__(self) -> Expression:
|
|
199
199
|
...
|
|
200
200
|
|
|
201
|
-
def
|
|
201
|
+
def abs(self) -> Expression:
|
|
202
202
|
...
|
|
203
203
|
|
|
204
|
-
def
|
|
204
|
+
def sqrt(self) -> Expression:
|
|
205
205
|
...
|
|
206
206
|
|
|
207
|
-
def
|
|
207
|
+
def sin(self) -> Expression:
|
|
208
208
|
...
|
|
209
209
|
|
|
210
|
-
def
|
|
210
|
+
def cos(self) -> Expression:
|
|
211
211
|
...
|
|
212
212
|
|
|
213
|
-
def
|
|
213
|
+
def tan(self) -> Expression:
|
|
214
214
|
...
|
|
215
215
|
|
|
216
|
-
def
|
|
216
|
+
def asin(self) -> Expression:
|
|
217
217
|
...
|
|
218
218
|
|
|
219
|
-
def
|
|
219
|
+
def acos(self) -> Expression:
|
|
220
|
+
...
|
|
221
|
+
|
|
222
|
+
def atan(self) -> Expression:
|
|
223
|
+
...
|
|
224
|
+
|
|
225
|
+
def sinh(self) -> Expression:
|
|
226
|
+
...
|
|
227
|
+
|
|
228
|
+
def cosh(self) -> Expression:
|
|
229
|
+
...
|
|
230
|
+
|
|
231
|
+
def tanh(self) -> Expression:
|
|
232
|
+
...
|
|
233
|
+
|
|
234
|
+
def asinh(self) -> Expression:
|
|
235
|
+
...
|
|
236
|
+
|
|
237
|
+
def acosh(self) -> Expression:
|
|
238
|
+
...
|
|
239
|
+
|
|
240
|
+
def atanh(self) -> Expression:
|
|
241
|
+
...
|
|
242
|
+
|
|
243
|
+
def exp(self) -> Expression:
|
|
244
|
+
...
|
|
245
|
+
|
|
246
|
+
def ln(self) -> Expression:
|
|
247
|
+
...
|
|
248
|
+
|
|
249
|
+
def log10(self) -> Expression:
|
|
250
|
+
...
|
|
251
|
+
|
|
252
|
+
def log2(self) -> Expression:
|
|
253
|
+
...
|
|
254
|
+
|
|
255
|
+
def ceil(self) -> Expression:
|
|
256
|
+
...
|
|
257
|
+
|
|
258
|
+
def floor(self) -> Expression:
|
|
259
|
+
...
|
|
260
|
+
|
|
261
|
+
def map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
262
|
+
...
|
|
263
|
+
|
|
264
|
+
def roll(self, shift:typing.Any, *, axis:typing.Optional[builtins.int]=None) -> Expression:
|
|
265
|
+
...
|
|
266
|
+
|
|
267
|
+
def filter(self, predicate:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
268
|
+
...
|
|
269
|
+
|
|
270
|
+
def flat_map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
271
|
+
...
|
|
272
|
+
|
|
273
|
+
def __getitem__(self, subscripts:typing.Any) -> Expression:
|
|
274
|
+
...
|
|
275
|
+
|
|
276
|
+
def sum(self, axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression:
|
|
277
|
+
...
|
|
278
|
+
|
|
279
|
+
def prod(self, axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression:
|
|
280
|
+
...
|
|
281
|
+
|
|
282
|
+
def __eq__(self, other:typing.Any) -> Expression:
|
|
283
|
+
...
|
|
284
|
+
|
|
285
|
+
def __ne__(self, other:typing.Any) -> Expression:
|
|
286
|
+
...
|
|
287
|
+
|
|
288
|
+
def __lt__(self, other:typing.Any) -> Expression:
|
|
289
|
+
...
|
|
290
|
+
|
|
291
|
+
def __le__(self, other:typing.Any) -> Expression:
|
|
292
|
+
...
|
|
293
|
+
|
|
294
|
+
def __gt__(self, other:typing.Any) -> Expression:
|
|
295
|
+
...
|
|
296
|
+
|
|
297
|
+
def __ge__(self, other:typing.Any) -> Expression:
|
|
220
298
|
...
|
|
221
299
|
|
|
222
300
|
|
|
@@ -224,157 +302,184 @@ class Expression:
|
|
|
224
302
|
r"""
|
|
225
303
|
Any expression in Python.
|
|
226
304
|
"""
|
|
227
|
-
def
|
|
305
|
+
def __call__(self, *args) -> Expression:
|
|
228
306
|
...
|
|
229
307
|
|
|
230
|
-
def
|
|
308
|
+
def shape(self) -> Expression:
|
|
231
309
|
...
|
|
232
310
|
|
|
233
|
-
def
|
|
311
|
+
def len_at(self, axis:builtins.int) -> Expression:
|
|
234
312
|
...
|
|
235
313
|
|
|
236
|
-
def
|
|
314
|
+
def __repr__(self) -> builtins.str:
|
|
237
315
|
...
|
|
238
316
|
|
|
239
|
-
def
|
|
317
|
+
def __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
|
|
240
318
|
...
|
|
241
319
|
|
|
242
|
-
def
|
|
320
|
+
def __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
|
|
243
321
|
...
|
|
244
322
|
|
|
245
|
-
def
|
|
323
|
+
def __add__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
246
324
|
...
|
|
247
325
|
|
|
248
|
-
def
|
|
326
|
+
def __radd__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
249
327
|
...
|
|
250
328
|
|
|
251
|
-
def
|
|
329
|
+
def __sub__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
252
330
|
...
|
|
253
331
|
|
|
254
|
-
def
|
|
332
|
+
def __rsub__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
255
333
|
...
|
|
256
334
|
|
|
257
|
-
def
|
|
335
|
+
def __mul__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
258
336
|
...
|
|
259
337
|
|
|
260
|
-
def
|
|
338
|
+
def __rmul__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
261
339
|
...
|
|
262
340
|
|
|
263
|
-
def
|
|
341
|
+
def __truediv__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
264
342
|
...
|
|
265
343
|
|
|
266
|
-
def
|
|
344
|
+
def __rtruediv__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
267
345
|
...
|
|
268
346
|
|
|
269
|
-
def
|
|
347
|
+
def __mod__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
270
348
|
...
|
|
271
349
|
|
|
272
|
-
def
|
|
350
|
+
def __rmod__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
273
351
|
...
|
|
274
352
|
|
|
275
|
-
def
|
|
353
|
+
def min(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
276
354
|
...
|
|
277
355
|
|
|
278
|
-
def
|
|
356
|
+
def max(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
279
357
|
...
|
|
280
358
|
|
|
281
|
-
def
|
|
359
|
+
def __neg__(self) -> Expression:
|
|
360
|
+
...
|
|
361
|
+
|
|
362
|
+
def abs(self) -> Expression:
|
|
282
363
|
...
|
|
283
364
|
|
|
284
365
|
def sqrt(self) -> Expression:
|
|
285
366
|
...
|
|
286
367
|
|
|
287
|
-
def
|
|
368
|
+
def sin(self) -> Expression:
|
|
288
369
|
...
|
|
289
370
|
|
|
290
|
-
def
|
|
371
|
+
def cos(self) -> Expression:
|
|
291
372
|
...
|
|
292
373
|
|
|
293
|
-
def
|
|
374
|
+
def tan(self) -> Expression:
|
|
294
375
|
...
|
|
295
376
|
|
|
296
|
-
def
|
|
377
|
+
def asin(self) -> Expression:
|
|
297
378
|
...
|
|
298
379
|
|
|
299
|
-
def
|
|
380
|
+
def acos(self) -> Expression:
|
|
300
381
|
...
|
|
301
382
|
|
|
302
|
-
def
|
|
383
|
+
def atan(self) -> Expression:
|
|
303
384
|
...
|
|
304
385
|
|
|
305
|
-
def
|
|
386
|
+
def sinh(self) -> Expression:
|
|
306
387
|
...
|
|
307
388
|
|
|
308
|
-
def
|
|
389
|
+
def cosh(self) -> Expression:
|
|
309
390
|
...
|
|
310
391
|
|
|
311
|
-
def
|
|
392
|
+
def tanh(self) -> Expression:
|
|
312
393
|
...
|
|
313
394
|
|
|
314
|
-
def
|
|
395
|
+
def asinh(self) -> Expression:
|
|
315
396
|
...
|
|
316
397
|
|
|
317
|
-
def
|
|
398
|
+
def acosh(self) -> Expression:
|
|
318
399
|
...
|
|
319
400
|
|
|
320
|
-
def
|
|
401
|
+
def atanh(self) -> Expression:
|
|
321
402
|
...
|
|
322
403
|
|
|
323
|
-
def
|
|
404
|
+
def exp(self) -> Expression:
|
|
324
405
|
...
|
|
325
406
|
|
|
326
|
-
def
|
|
407
|
+
def ln(self) -> Expression:
|
|
327
408
|
...
|
|
328
409
|
|
|
329
|
-
def
|
|
410
|
+
def log10(self) -> Expression:
|
|
330
411
|
...
|
|
331
412
|
|
|
332
|
-
def
|
|
413
|
+
def log2(self) -> Expression:
|
|
333
414
|
...
|
|
334
415
|
|
|
335
|
-
def
|
|
416
|
+
def ceil(self) -> Expression:
|
|
336
417
|
...
|
|
337
418
|
|
|
338
|
-
def
|
|
419
|
+
def floor(self) -> Expression:
|
|
339
420
|
...
|
|
340
421
|
|
|
341
|
-
def
|
|
422
|
+
def map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
342
423
|
...
|
|
343
424
|
|
|
344
|
-
def
|
|
425
|
+
def roll(self, shift:typing.Any, *, axis:typing.Optional[builtins.int]=None) -> Expression:
|
|
426
|
+
...
|
|
427
|
+
|
|
428
|
+
def filter(self, predicate:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
345
429
|
...
|
|
346
430
|
|
|
347
|
-
def
|
|
431
|
+
def flat_map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
348
432
|
...
|
|
349
433
|
|
|
350
|
-
def
|
|
434
|
+
def __getitem__(self, subscripts:typing.Any) -> Expression:
|
|
351
435
|
...
|
|
352
436
|
|
|
353
|
-
def
|
|
437
|
+
def sum(self, axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression:
|
|
354
438
|
...
|
|
355
439
|
|
|
356
|
-
def
|
|
440
|
+
def prod(self, axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression:
|
|
357
441
|
...
|
|
358
442
|
|
|
359
|
-
def
|
|
443
|
+
def __and__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
360
444
|
...
|
|
361
445
|
|
|
362
|
-
def
|
|
446
|
+
def __rand__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
363
447
|
...
|
|
364
448
|
|
|
365
|
-
def
|
|
449
|
+
def __or__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
366
450
|
...
|
|
367
451
|
|
|
368
|
-
def
|
|
452
|
+
def __ror__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
369
453
|
...
|
|
370
454
|
|
|
371
|
-
def
|
|
455
|
+
def __xor__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
372
456
|
...
|
|
373
457
|
|
|
374
|
-
def
|
|
458
|
+
def __rxor__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
375
459
|
...
|
|
376
460
|
|
|
377
|
-
def
|
|
461
|
+
def diff(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
462
|
+
...
|
|
463
|
+
|
|
464
|
+
def bnot(self) -> Expression:
|
|
465
|
+
...
|
|
466
|
+
|
|
467
|
+
def __eq__(self, other:typing.Any) -> Expression:
|
|
468
|
+
...
|
|
469
|
+
|
|
470
|
+
def __ne__(self, other:typing.Any) -> Expression:
|
|
471
|
+
...
|
|
472
|
+
|
|
473
|
+
def __lt__(self, other:typing.Any) -> Expression:
|
|
474
|
+
...
|
|
475
|
+
|
|
476
|
+
def __le__(self, other:typing.Any) -> Expression:
|
|
477
|
+
...
|
|
478
|
+
|
|
479
|
+
def __gt__(self, other:typing.Any) -> Expression:
|
|
480
|
+
...
|
|
481
|
+
|
|
482
|
+
def __ge__(self, other:typing.Any) -> Expression:
|
|
378
483
|
...
|
|
379
484
|
|
|
380
485
|
|
|
@@ -465,70 +570,172 @@ class Placeholder:
|
|
|
465
570
|
def len_at(self, index:builtins.int) -> Expression:
|
|
466
571
|
...
|
|
467
572
|
|
|
468
|
-
def
|
|
573
|
+
def __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
|
|
469
574
|
...
|
|
470
575
|
|
|
471
|
-
def
|
|
576
|
+
def __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
|
|
472
577
|
...
|
|
473
578
|
|
|
474
|
-
def
|
|
579
|
+
def __add__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
475
580
|
...
|
|
476
581
|
|
|
477
|
-
def
|
|
582
|
+
def __radd__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
478
583
|
...
|
|
479
584
|
|
|
480
|
-
def
|
|
585
|
+
def __sub__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
481
586
|
...
|
|
482
587
|
|
|
483
|
-
def
|
|
588
|
+
def __rsub__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
484
589
|
...
|
|
485
590
|
|
|
486
|
-
def
|
|
591
|
+
def __mul__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
487
592
|
...
|
|
488
593
|
|
|
489
|
-
def
|
|
594
|
+
def __rmul__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
490
595
|
...
|
|
491
596
|
|
|
492
|
-
def
|
|
597
|
+
def __truediv__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
493
598
|
...
|
|
494
599
|
|
|
495
|
-
def
|
|
600
|
+
def __rtruediv__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
496
601
|
...
|
|
497
602
|
|
|
498
|
-
def
|
|
603
|
+
def __mod__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
604
|
+
...
|
|
605
|
+
|
|
606
|
+
def __rmod__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
499
607
|
...
|
|
500
608
|
|
|
501
|
-
def
|
|
609
|
+
def min(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
502
610
|
...
|
|
503
611
|
|
|
504
|
-
def
|
|
612
|
+
def max(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
505
613
|
...
|
|
506
614
|
|
|
507
|
-
def
|
|
615
|
+
def __neg__(self) -> Expression:
|
|
616
|
+
...
|
|
617
|
+
|
|
618
|
+
def abs(self) -> Expression:
|
|
508
619
|
...
|
|
509
620
|
|
|
510
|
-
def
|
|
621
|
+
def sqrt(self) -> Expression:
|
|
511
622
|
...
|
|
512
623
|
|
|
513
|
-
def
|
|
624
|
+
def sin(self) -> Expression:
|
|
514
625
|
...
|
|
515
626
|
|
|
516
|
-
def
|
|
627
|
+
def cos(self) -> Expression:
|
|
517
628
|
...
|
|
518
629
|
|
|
519
|
-
def
|
|
630
|
+
def tan(self) -> Expression:
|
|
520
631
|
...
|
|
521
632
|
|
|
522
|
-
def
|
|
633
|
+
def asin(self) -> Expression:
|
|
523
634
|
...
|
|
524
635
|
|
|
525
|
-
def
|
|
636
|
+
def acos(self) -> Expression:
|
|
526
637
|
...
|
|
527
638
|
|
|
528
|
-
def
|
|
639
|
+
def atan(self) -> Expression:
|
|
529
640
|
...
|
|
530
641
|
|
|
531
|
-
def
|
|
642
|
+
def sinh(self) -> Expression:
|
|
643
|
+
...
|
|
644
|
+
|
|
645
|
+
def cosh(self) -> Expression:
|
|
646
|
+
...
|
|
647
|
+
|
|
648
|
+
def tanh(self) -> Expression:
|
|
649
|
+
...
|
|
650
|
+
|
|
651
|
+
def asinh(self) -> Expression:
|
|
652
|
+
...
|
|
653
|
+
|
|
654
|
+
def acosh(self) -> Expression:
|
|
655
|
+
...
|
|
656
|
+
|
|
657
|
+
def atanh(self) -> Expression:
|
|
658
|
+
...
|
|
659
|
+
|
|
660
|
+
def exp(self) -> Expression:
|
|
661
|
+
...
|
|
662
|
+
|
|
663
|
+
def ln(self) -> Expression:
|
|
664
|
+
...
|
|
665
|
+
|
|
666
|
+
def log10(self) -> Expression:
|
|
667
|
+
...
|
|
668
|
+
|
|
669
|
+
def log2(self) -> Expression:
|
|
670
|
+
...
|
|
671
|
+
|
|
672
|
+
def ceil(self) -> Expression:
|
|
673
|
+
...
|
|
674
|
+
|
|
675
|
+
def floor(self) -> Expression:
|
|
676
|
+
...
|
|
677
|
+
|
|
678
|
+
def map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
679
|
+
...
|
|
680
|
+
|
|
681
|
+
def roll(self, shift:typing.Any, *, axis:typing.Optional[builtins.int]=None) -> Expression:
|
|
682
|
+
...
|
|
683
|
+
|
|
684
|
+
def filter(self, predicate:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
685
|
+
...
|
|
686
|
+
|
|
687
|
+
def flat_map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
688
|
+
...
|
|
689
|
+
|
|
690
|
+
def __getitem__(self, subscripts:typing.Any) -> Expression:
|
|
691
|
+
...
|
|
692
|
+
|
|
693
|
+
def sum(self, axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression:
|
|
694
|
+
...
|
|
695
|
+
|
|
696
|
+
def prod(self, axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression:
|
|
697
|
+
...
|
|
698
|
+
|
|
699
|
+
def __and__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
700
|
+
...
|
|
701
|
+
|
|
702
|
+
def __rand__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
703
|
+
...
|
|
704
|
+
|
|
705
|
+
def __or__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
706
|
+
...
|
|
707
|
+
|
|
708
|
+
def __ror__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
709
|
+
...
|
|
710
|
+
|
|
711
|
+
def __xor__(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
712
|
+
...
|
|
713
|
+
|
|
714
|
+
def __rxor__(self, lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
715
|
+
...
|
|
716
|
+
|
|
717
|
+
def diff(self, rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
718
|
+
...
|
|
719
|
+
|
|
720
|
+
def bnot(self) -> Expression:
|
|
721
|
+
...
|
|
722
|
+
|
|
723
|
+
def __eq__(self, other:typing.Any) -> Expression:
|
|
724
|
+
...
|
|
725
|
+
|
|
726
|
+
def __ne__(self, other:typing.Any) -> Expression:
|
|
727
|
+
...
|
|
728
|
+
|
|
729
|
+
def __lt__(self, other:typing.Any) -> Expression:
|
|
730
|
+
...
|
|
731
|
+
|
|
732
|
+
def __le__(self, other:typing.Any) -> Expression:
|
|
733
|
+
...
|
|
734
|
+
|
|
735
|
+
def __gt__(self, other:typing.Any) -> Expression:
|
|
736
|
+
...
|
|
737
|
+
|
|
738
|
+
def __ge__(self, other:typing.Any) -> Expression:
|
|
532
739
|
...
|
|
533
740
|
|
|
534
741
|
|
|
@@ -1005,9 +1212,15 @@ def atan(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeho
|
|
|
1005
1212
|
def atanh(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1006
1213
|
...
|
|
1007
1214
|
|
|
1215
|
+
def band(lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any], rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1216
|
+
...
|
|
1217
|
+
|
|
1008
1218
|
def bnot(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1009
1219
|
...
|
|
1010
1220
|
|
|
1221
|
+
def bor(lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any], rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1222
|
+
...
|
|
1223
|
+
|
|
1011
1224
|
def ceil(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1012
1225
|
...
|
|
1013
1226
|
|
|
@@ -1017,9 +1230,18 @@ def cos(expr:Expression | builtins.int | builtins.float | DecisionVar | Placehol
|
|
|
1017
1230
|
def cosh(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1018
1231
|
...
|
|
1019
1232
|
|
|
1233
|
+
def diff(lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any], rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1234
|
+
...
|
|
1235
|
+
|
|
1020
1236
|
def exp(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1021
1237
|
...
|
|
1022
1238
|
|
|
1239
|
+
def filter(predicate:typing.Callable[[Expression], typing.Any], operand:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1240
|
+
...
|
|
1241
|
+
|
|
1242
|
+
def flat_map(func:typing.Callable[[Expression], typing.Any], arg:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1243
|
+
...
|
|
1244
|
+
|
|
1023
1245
|
def floor(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1024
1246
|
...
|
|
1025
1247
|
|
|
@@ -1032,7 +1254,7 @@ def log10(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeh
|
|
|
1032
1254
|
def log2(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1033
1255
|
...
|
|
1034
1256
|
|
|
1035
|
-
def map(arg:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]
|
|
1257
|
+
def map(func:typing.Callable[[Expression], typing.Any], arg:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1036
1258
|
...
|
|
1037
1259
|
|
|
1038
1260
|
def max(lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any], rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
@@ -1041,6 +1263,9 @@ def max(lhs:Expression | builtins.int | builtins.float | DecisionVar | Placehold
|
|
|
1041
1263
|
def min(lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any], rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1042
1264
|
...
|
|
1043
1265
|
|
|
1266
|
+
def neg(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1267
|
+
...
|
|
1268
|
+
|
|
1044
1269
|
def prod(operand:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any], axis:typing.Optional[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any] | builtins.int | typing.Sequence[Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]] | typing.Sequence[builtins.int]]=None) -> Expression:
|
|
1045
1270
|
...
|
|
1046
1271
|
|
|
@@ -1065,3 +1290,6 @@ def tan(expr:Expression | builtins.int | builtins.float | DecisionVar | Placehol
|
|
|
1065
1290
|
def tanh(expr:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1066
1291
|
...
|
|
1067
1292
|
|
|
1293
|
+
def xor(lhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any], rhs:Expression | builtins.int | builtins.float | DecisionVar | Placeholder | list | tuple | typing.Callable[[Expression], typing.Any]) -> Expression:
|
|
1294
|
+
...
|
|
1295
|
+
|
jijmodeling/_jijmodeling.abi3.so
CHANGED
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
jijmodeling-2.0.0a3.dist-info/METADATA,sha256=8a5SyZT38StT5EiexjGgyHYWK9tuaUQHyaLG2XgcLRc,2482
|
|
2
|
+
jijmodeling-2.0.0a3.dist-info/WHEEL,sha256=4FK1cQjWtxthB2GjQlwKValP2gjnkeIRpA2yeHH3EdI,104
|
|
3
|
+
jijmodeling-2.0.0a3.dist-info/licenses/LICENSE.txt,sha256=T5HdEbP5NWG8fZbvF9pofeteW3HrS30V3_LvtPUHFYM,3400
|
|
4
|
+
jijmodeling/__init__.py,sha256=43DV_WzDxS0n6FseNyfJZ6oQucO31T4qqbz3bx9JMtE,44
|
|
5
|
+
jijmodeling/__init__.pyi,sha256=YXcQQMizINtbTx5MiQEkp6W7a53FeQNd_9Y1gFfqALg,59906
|
|
6
|
+
jijmodeling/_jijmodeling.abi3.so,sha256=uQXZ1oIA6pgWm-kXy-5DuaCZ-4_x8_naolFvjQsJ0V4,5619744
|
|
7
|
+
jijmodeling/_jijmodeling.pyi,sha256=9towCfPT8yTmJxvncDdME7ZCeFSSntPxAd_TT_spuXQ,162
|
|
8
|
+
jijmodeling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
jijmodeling-2.0.0a3.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
jijmodeling-2.0.0a2.dist-info/METADATA,sha256=tdiMW4rObLVDeek9C2kZ8CfPelCjzq8ma9aLRddc5pI,2482
|
|
2
|
-
jijmodeling-2.0.0a2.dist-info/WHEEL,sha256=4FK1cQjWtxthB2GjQlwKValP2gjnkeIRpA2yeHH3EdI,104
|
|
3
|
-
jijmodeling-2.0.0a2.dist-info/licenses/LICENSE.txt,sha256=T5HdEbP5NWG8fZbvF9pofeteW3HrS30V3_LvtPUHFYM,3400
|
|
4
|
-
jijmodeling/__init__.py,sha256=43DV_WzDxS0n6FseNyfJZ6oQucO31T4qqbz3bx9JMtE,44
|
|
5
|
-
jijmodeling/__init__.pyi,sha256=IeEZoh_MYKJs1Kur4SxF7Ox8NMLfG00AVIlRSGER0Ek,48095
|
|
6
|
-
jijmodeling/_jijmodeling.abi3.so,sha256=G3ViiKp2xQCCxKIJEJzbpgt_8rP3h0rVAqeNsubmzQ4,5492368
|
|
7
|
-
jijmodeling/_jijmodeling.pyi,sha256=9towCfPT8yTmJxvncDdME7ZCeFSSntPxAd_TT_spuXQ,162
|
|
8
|
-
jijmodeling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
jijmodeling-2.0.0a2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|