Are there any free solvers capable of solving integer programming problems with large numbers (at least 336 bits)? All the solvers I've looked at appear to assume only double precision, and I haven't been able to find any that claim arbitrary precision.
Arbitrary precision integer programming solvers?
278 Views Asked by Antimony At
1
There are 1 best solutions below
Related Questions in BIGNUM
- Error: Reference to undefined global `Num'
- Big number to HEX in golang
- Raising large number to large power and mod it by a large number?
- Arbitrary precision integer programming solvers?
- ASM printing big numbers
- Error while installing rspec gem bignum too big to convert into `long'
- How do I parse a decimal UUID string in C?
- Why Ruby and Python long division differs from GMP and Java BigInteger?
- Fast bignum square computation
- (bignumber.js) "decimalPlaces" or "dp" not working
- how to get uint256_t upper and lower part in nodejs/javascript,
- Efficient Exponentiation For HUGE Numbers (I'm Talking Googols)
- Can long integer routines benefit from SSE?
- How do initialize iOS vecLib vU1024 data type?
- Basic multiplication in c by changing starting code
Related Questions in INTEGER-PROGRAMMING
- How to convert quadratic to linear program?
- Minimum exact cover of grid with squares; extra cuts
- adding constraint under pyomo environment
- GAMS indexing query
- Relaxing binary variable but having the same solution
- Construction heuristics in binary integer programming
- Mixed integer programming with quadratic obj and quadratic constraints?
- Arbitrary precision integer programming solvers?
- How do I get the minimum positive value over a set of integer expressions?
- How to schedule different types of planks to form bridges
- Error in check_for_unknown_vars_impl(model, the_ast) : The expression contains a variable that is not part of the model
- Library for solving knapsack-prblm(integer-programming)
- Get best-known feasible answer after time limit
- How to convert the following if-else conditions to Linear integer programming constraints?
- Keeping count of variable occurence in google OR Tools
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The only one that I know of is SCIP - its a really good solver and they have a beta of a version that does exact arithmetic, although I haven't tried that side of SCIP yet: http://scip.zib.de/exactmip.shtml
Also, the people working on SCIP all seem to be really helpful, and there is an active support email list too so you are likely to get good support.
Tim