PySCIPOpt
Python Interface to the SCIP Optimization Suite
even.py File Reference

model to decide whether argument is even or odd More...

Go to the source code of this file.

Functions

def parity (number)
 

Variables

bool verbose = False
 
dictionary sdic = {0:"even",1:"odd"}
 
list example_values = [0, 1, 1.5, "hallo welt", 20, 25, -101, -15., -10, -int(2**31), int(2**31-1), int(2**63)-1]
 
 n = leval(sys.argv[1])
 

Detailed Description

model to decide whether argument is even or odd

Definition in file even.py.

Function Documentation

def even.parity ( number  )
Prints if a value is even/odd/neither per each value in a example list

This example is made for newcomers and motivated by:
- modulus is unsupported for pyscipopt.scip.Variable and int
- variables are non-integer by default
Based on this: #172#issuecomment-394644046

Args:
    number: value which parity is checked

Returns:
    sval: 1 if number is odd, 0 if number is even, -1 if neither

Definition at line 28 of file even.py.