I am using the OjAlgo for a linear programming problem which runs on a small gateway (not that much of computation capability). The inputs are changing and I solve the problem each 5 minutes. Before clearing the model and recreating the new one, it goes to UNEXPLORED status after almost 10 solving. Then I figured out it is possible to dispose the model and then recreate new model each time. This helps and it got better. But still after a while it gets into UNEXPLORED state and never gets out. The thing is restoring the java application will solve the issue but again after a while it gets into the same UNEXPLORED mode. Then I created an instance of Intermediate by getModel().prepare() and then dispose it. I see dispose method in the Intermediate has some clearing for the solver also. It helps a lot and now I almost don't see an UNEXPLORED but a few time I still get UNEXPLORED. And when it gets to UNEXPLORED it gets stuck. Seems it has something to do with the cleaning up. Is there another thing that I still need to do to clean the model and the solver? Any help will be appreciated.
0
There are 0 best solutions below
Related Questions in SOLVER
- Is there a way to evaluate a system of disequations?
- VBA with solver embedded only works for first active cell reference
- MathProg max() function complains about wrong arguments
- Is it possible for a simulink block to notify the user if a fixed-step solver is being used?
- Result from function call is not a proper array of floats. fsolve
- solve() execution aborted
- Little solver program with loop and decision tree, why does not work?
- Optimize SAT constraints of puzzle from DNF
- Prove a Boolean formula under some Implies conditions in z3py
- excel solver and lp_solve API
- Limiting chosen variables solved for in opensolver
- How to programmatically add .xlam addin (as object) to vba?
- Use of solver to minimise an vba function (instead of an excel cell wrt other excel cell)
- I want to solve a system of equations containing a*x
- solvability of a version of lights out game
Related Questions in OJALGO
- Sparse Matrix Decomposition in ojalgo
- How to concatenate two ComplexMatrix?
- ojAlgo MatrixR032 creation from string, normalization, and cosine similarity calculation
- How do one solve linear programming problems with ojAlgo?
- What's the most efficient way to create a diagonal matrix with ojalgo?
- How to get multiple values by index in an ojAlgo-array?
- How to get multipliers after solving a quadratic program in ojAlgo
- Remove rows/columns from MatrixStore in OjAlgo
- Oj Algo concurrency
- How to export optimization model in ojalgo
- Why the paramters are adjusted in ojalgo?
- Integer Optimization using OjAlgo objective function
- Is there any ojAlgo solver for when the condition number is large and the matrix is symmetric and indefinite?
- Obtaining a good suboptimal solution from ojalgo for a linear optimisation
- ojAlgo - Optimization issue with contiguous block logic?
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?