jijmodeling 2.0.0a2__cp38-abi3-manylinux_2_28_aarch64.whl → 2.0.0a3__cp38-abi3-manylinux_2_28_aarch64.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 CHANGED
@@ -153,70 +153,148 @@ class DecisionVar:
153
153
  def __repr__(self) -> builtins.str:
154
154
  ...
155
155
 
156
- def __getitem__(self, subscripts:typing.Any) -> Expression:
156
+ def __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
157
157
  ...
158
158
 
159
- 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:
159
+ def __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
160
160
  ...
161
161
 
162
- 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:
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 __eq__(self, other:typing.Any) -> Expression:
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 __ne__(self, other:typing.Any) -> Expression:
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 __lt__(self, other:typing.Any) -> Expression:
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 __le__(self, other:typing.Any) -> Expression:
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 __gt__(self, other:typing.Any) -> Expression:
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 __ge__(self, other:typing.Any) -> Expression:
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 __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
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 __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
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 __mod__(self, other:typing.Any) -> Expression:
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 __rmod__(self, other:typing.Any) -> Expression:
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 __truediv__(self, other:typing.Any) -> Expression:
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 __rtruediv__(self, other:typing.Any) -> Expression:
198
+ def __neg__(self) -> Expression:
199
199
  ...
200
200
 
201
- def __mul__(self, other:typing.Any) -> Expression:
201
+ def abs(self) -> Expression:
202
202
  ...
203
203
 
204
- def __rmul__(self, other:typing.Any) -> Expression:
204
+ def sqrt(self) -> Expression:
205
205
  ...
206
206
 
207
- def __sub__(self, other:typing.Any) -> Expression:
207
+ def sin(self) -> Expression:
208
208
  ...
209
209
 
210
- def __rsub__(self, other:typing.Any) -> Expression:
210
+ def cos(self) -> Expression:
211
211
  ...
212
212
 
213
- def __add__(self, other:typing.Any) -> Expression:
213
+ def tan(self) -> Expression:
214
214
  ...
215
215
 
216
- def __radd__(self, other:typing.Any) -> Expression:
216
+ def asin(self) -> Expression:
217
217
  ...
218
218
 
219
- def __neg__(self) -> Expression:
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 map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
305
+ def __call__(self, *args) -> Expression:
228
306
  ...
229
307
 
230
- def roll(self, shift:typing.Any, *, axis:typing.Optional[builtins.int]=None) -> Expression:
308
+ def shape(self) -> Expression:
231
309
  ...
232
310
 
233
- def max(self, other:typing.Any) -> Expression:
311
+ def len_at(self, axis:builtins.int) -> Expression:
234
312
  ...
235
313
 
236
- def min(self, other:typing.Any) -> Expression:
314
+ def __repr__(self) -> builtins.str:
237
315
  ...
238
316
 
239
- def bnot(self) -> Expression:
317
+ def __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
240
318
  ...
241
319
 
242
- def floor(self) -> Expression:
320
+ def __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
243
321
  ...
244
322
 
245
- def ceil(self) -> Expression:
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 atanh(self) -> Expression:
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 acosh(self) -> Expression:
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 asinh(self) -> Expression:
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 tanh(self) -> Expression:
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 cosh(self) -> Expression:
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 sinh(self) -> Expression:
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 atan(self) -> Expression:
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 acos(self) -> Expression:
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 asin(self) -> Expression:
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 tan(self) -> Expression:
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 cos(self) -> Expression:
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 sin(self) -> Expression:
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 abs(self) -> Expression:
368
+ def sin(self) -> Expression:
288
369
  ...
289
370
 
290
- def exp(self) -> Expression:
371
+ def cos(self) -> Expression:
291
372
  ...
292
373
 
293
- def ln(self) -> Expression:
374
+ def tan(self) -> Expression:
294
375
  ...
295
376
 
296
- def log10(self) -> Expression:
377
+ def asin(self) -> Expression:
297
378
  ...
298
379
 
299
- def log2(self) -> Expression:
380
+ def acos(self) -> Expression:
300
381
  ...
301
382
 
302
- def __call__(self, *args) -> Expression:
383
+ def atan(self) -> Expression:
303
384
  ...
304
385
 
305
- def shape(self) -> Expression:
386
+ def sinh(self) -> Expression:
306
387
  ...
307
388
 
308
- def len_at(self, axis:builtins.int) -> Expression:
389
+ def cosh(self) -> Expression:
309
390
  ...
310
391
 
311
- def __repr__(self) -> builtins.str:
392
+ def tanh(self) -> Expression:
312
393
  ...
313
394
 
314
- def __getitem__(self, subscripts:typing.Any) -> Expression:
395
+ def asinh(self) -> Expression:
315
396
  ...
316
397
 
317
- 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:
398
+ def acosh(self) -> Expression:
318
399
  ...
319
400
 
320
- 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:
401
+ def atanh(self) -> Expression:
321
402
  ...
322
403
 
323
- def __eq__(self, other:typing.Any) -> Expression:
404
+ def exp(self) -> Expression:
324
405
  ...
325
406
 
326
- def __ne__(self, other:typing.Any) -> Expression:
407
+ def ln(self) -> Expression:
327
408
  ...
328
409
 
329
- def __lt__(self, other:typing.Any) -> Expression:
410
+ def log10(self) -> Expression:
330
411
  ...
331
412
 
332
- def __le__(self, other:typing.Any) -> Expression:
413
+ def log2(self) -> Expression:
333
414
  ...
334
415
 
335
- def __gt__(self, other:typing.Any) -> Expression:
416
+ def ceil(self) -> Expression:
336
417
  ...
337
418
 
338
- def __ge__(self, other:typing.Any) -> Expression:
419
+ def floor(self) -> Expression:
339
420
  ...
340
421
 
341
- def __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
422
+ def map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
342
423
  ...
343
424
 
344
- def __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
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 __mod__(self, other:typing.Any) -> Expression:
431
+ def flat_map(self, func:typing.Callable[[Expression], typing.Any]) -> Expression:
348
432
  ...
349
433
 
350
- def __rmod__(self, other:typing.Any) -> Expression:
434
+ def __getitem__(self, subscripts:typing.Any) -> Expression:
351
435
  ...
352
436
 
353
- def __truediv__(self, other:typing.Any) -> Expression:
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 __rtruediv__(self, other:typing.Any) -> Expression:
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 __mul__(self, other:typing.Any) -> Expression:
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 __rmul__(self, other:typing.Any) -> Expression:
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 __sub__(self, other:typing.Any) -> Expression:
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 __rsub__(self, other:typing.Any) -> Expression:
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 __add__(self, other:typing.Any) -> Expression:
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 __radd__(self, other:typing.Any) -> Expression:
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 __neg__(self) -> Expression:
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 __getitem__(self, subscripts:typing.Any) -> Expression:
573
+ def __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
469
574
  ...
470
575
 
471
- 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:
576
+ def __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
472
577
  ...
473
578
 
474
- 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:
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 __eq__(self, other:typing.Any) -> Expression:
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 __ne__(self, other:typing.Any) -> Expression:
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 __lt__(self, other:typing.Any) -> Expression:
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 __le__(self, other:typing.Any) -> Expression:
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 __gt__(self, other:typing.Any) -> Expression:
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 __ge__(self, other:typing.Any) -> Expression:
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 __pow__(self, exponent:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
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 __rpow__(self, base:typing.Any, modulo:typing.Optional[typing.Any]=None) -> Expression:
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 __mod__(self, other:typing.Any) -> Expression:
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 __rmod__(self, other:typing.Any) -> Expression:
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 __truediv__(self, other:typing.Any) -> Expression:
615
+ def __neg__(self) -> Expression:
616
+ ...
617
+
618
+ def abs(self) -> Expression:
508
619
  ...
509
620
 
510
- def __rtruediv__(self, other:typing.Any) -> Expression:
621
+ def sqrt(self) -> Expression:
511
622
  ...
512
623
 
513
- def __mul__(self, other:typing.Any) -> Expression:
624
+ def sin(self) -> Expression:
514
625
  ...
515
626
 
516
- def __rmul__(self, other:typing.Any) -> Expression:
627
+ def cos(self) -> Expression:
517
628
  ...
518
629
 
519
- def __sub__(self, other:typing.Any) -> Expression:
630
+ def tan(self) -> Expression:
520
631
  ...
521
632
 
522
- def __rsub__(self, other:typing.Any) -> Expression:
633
+ def asin(self) -> Expression:
523
634
  ...
524
635
 
525
- def __add__(self, other:typing.Any) -> Expression:
636
+ def acos(self) -> Expression:
526
637
  ...
527
638
 
528
- def __radd__(self, other:typing.Any) -> Expression:
639
+ def atan(self) -> Expression:
529
640
  ...
530
641
 
531
- def __neg__(self) -> Expression:
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], func:typing.Callable[[Expression], typing.Any]) -> Expression:
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
+
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jijmodeling
3
- Version: 2.0.0a2
3
+ Version: 2.0.0a3
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Operating System :: POSIX :: Linux
6
6
  Classifier: Operating System :: MacOS
@@ -0,0 +1,9 @@
1
+ jijmodeling-2.0.0a3.dist-info/METADATA,sha256=8a5SyZT38StT5EiexjGgyHYWK9tuaUQHyaLG2XgcLRc,2482
2
+ jijmodeling-2.0.0a3.dist-info/WHEEL,sha256=03AfVCh23SYURu4Eyj1otbGIFVKZfjdvSJSnOghd0-E,107
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=1AAY_CrXgxfs0FCCHMfM4ENK9kbR2fryAshxV8bCTMk,5065576
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=03AfVCh23SYURu4Eyj1otbGIFVKZfjdvSJSnOghd0-E,107
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=lIbhGus0BGyQXhgLmI142CY3ziKM9RGfTGT2jAEYbRc,4922984
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,,