A solver is a generic term indicating a piece of mathematical software, possibly in the form of a stand-alone computer program or as a software library, that 'solves' a mathematical problem.
-2
votes
0answers
23 views
Data Envelopment Analysis for PHP [closed]
is there a DEA Solver library like this http://opensourcedea.org/ but for PHP?
Thank you in advance
1
vote
4answers
42 views
Solving a Variable Equation defined by the User
Answers in C, Python, C++ or Javascript would be very much appreciated.
I've read a few books, done all the examples. Now I'd like to write a simple program.
But, I already ran into the following ...
1
vote
0answers
25 views
alternate to brentq and fsolve python
Is there a module that will find all the zeros of function instead of the first zero it encounters beyond a specified starting point?
With brentq, we would specify where the function changes sign and ...
2
votes
1answer
31 views
Solver for sparse linearly-constrained non-linear least-squares
Are there any algorithms or solvers for solving non-linear least-squares problems where the jacobian is known to always be sparse, and the solution is constrained with either:
Linear equality ...
0
votes
1answer
90 views
24 Game/Countdown/Number Game solver, but without parentheses in the answer
I've been browsing the internet all day for an existing solution to creating an equation out of a list of numbers and operators for a specified target number.
I came across a lot of 24 Game solvers, ...
0
votes
1answer
44 views
c++ how to pass two arrays to a function and return them both?
I have two arrays:
int sudoku[9][9];
bool possiblevalues[81][9];
I want to initialize them both. I pass them to a function initialize (sudoku, possiblevalues). This one initializes the ...
0
votes
1answer
32 views
Simplify solver to account for any types
I created a generic puzzle solver that uses a Breadth First Search method. I have it working for 2 types of puzzles, one in which the config is just an array list and another which is an array list of ...
0
votes
0answers
25 views
Allow User To Input Data For A Sudoku Solving Program?
I am currently trying to allow the user to input values into a Sudoku solver however I keep getting an error. Here is the code:
#include <iostream> //
#include <fstream>
using ...
1
vote
1answer
36 views
GLPK Mathprog group of sets
I'm trying to code a model that can solve the Multiple Choice Knapsack Problem (MCKP) as described in Knapsack Problems involving dimensions, demands and multiple
choice constraints: generalization ...
1
vote
0answers
40 views
Constraint solving differences in sets
I have a set of five sets of tuples (int myInt, float myFloat)
I am looking to scale each set uniformly so that it:
Maximizes the number of occuraces where the difference between the pair of myInts ...
0
votes
1answer
60 views
Excel solver won't work when a constraint is unsatisfied in the beginning
I have this:
A B C
2 3 A1+B1
4 5 A2+B2
constraint_1: A1 + A2 = 5
constraint_2: B1 + B2 <= 4
Objective cell: C3, which is sum(C1,C2), it should be 0.
When I start with the state above, A1+A2 = ...
0
votes
2answers
56 views
Can't get an answer from Matlabs solve function
When I try to use solve with my predefine functions and vectors I get the following error message:
Warning: Explicit solution could not be found.
In solve at 169
In cardanAngles at 33
I ...
0
votes
0answers
64 views
Automatic Calculation Turned Off by VBA Macro
This is more of a curiousity than an urgency: I have the following code which is repeated several times in a larger Macro. I am finding that if I specify the search method (by including "Engine:=..") ...
0
votes
1answer
38 views
Excel Solver: Decision variables as absolute values
I am using the Excel 2010 solver to do some optimizations. Everything is running well except that I would like to run the solver to find a solution such that my decision variables, $A$1:$A$10, are ...
-2
votes
1answer
148 views
Sudoku Checker Java [closed]
I have a question about a problem I'm having with a code i am writing. I need to create a Sudoku board checker. The goal is to extend the Sudoku class (to make the CheckableSudoku class) by using the ...
0
votes
0answers
70 views
Microsoft Solver Foundation: Add decision variables in a loop to a constraint
I'm trying to create an optimization model using Microsoft Solver Foundation with VB.NET in Visual Studio 2010. Basically I have a list of 3 types of employees that I need to hire (bartenders, ...
-1
votes
1answer
89 views
C# Maze solver Graphic
i got a problem with my maze solver when i run the solver it gives a error at the graphic variable
private bool solveMaze(int xPos, int yPos, bool[,] alreadySearched)
{
bool ...
1
vote
0answers
19 views
sensitivities using assimulo ida(from sundials)
I'm trying to solve a problem with sensibilities using ida with assimulo.
solving the problem without sensibilities works fine but now i want to do it with sensibilities in finaltime, initial values ...
1
vote
1answer
155 views
Excel Solver Ignoring Constraint in VBA
I am trying to find a maximum return for a simple portfolio using Solver. Using Solver in the worksheet directly works sensibly, however it does not when the commands are set in VBA. Instead (as you ...
0
votes
1answer
92 views
Create Reduced Ordered Binary Decision Diagram (ROBDD) from truth table
Is there a software package (preferable an application, not library) that creates Reduced Ordered Binary Decision Diagrams (ROBDDs) from a given truth table (in some text format)?
6
votes
1answer
238 views
Sudoku solve method
I've a problem with my sudoku solving method. The program works like this; the board is empty when started, the users adds a couple of numbers to the board and then by hitting a Solve-button the ...
1
vote
2answers
273 views
How to delete Solver(SOLVER.XLAM) code
opening several examples of written macro's/ codes I suddenly get stuck with a code that seems to be secured. Solver (SOLVER.XLAM)
This is doiing noting and I would like to remove that from my system. ...
0
votes
2answers
340 views
Loop With Solver VBA
Hi I have the following code which runs a single optimisation through solver which I would like to run in a loop. the single run code is:
Sub Macro4
SolverReset
SolverOk SetCell:="$D$36", ...
1
vote
1answer
49 views
Z3, solver: push an empty level on assertion-stack, as defined in smtlib2: push(n=1)
currently I am using Z3 with Python.
I want to create an assertion-stack, where I can push a level and pop it later.
It should work exactly like any other "stack" with push- and pop-operations.
...
0
votes
1answer
112 views
run Excel Solver from macro
I want to run Excels Solver from a Macro. I already have all the algorithm parameters manually entered into the Solver window. By just calling
SolverSolve
I get a compile error.
Any idea how to ...
0
votes
0answers
58 views
Error when trying to run Excel-Solver from Python over com / pywin32
I am trying to run Excels Solver add-in via pywin32 in python with:
import win32com.client
from win32com.client import constants as c
app = Dispatch("Excel.Application")
app.Visible = True
...
-1
votes
1answer
78 views
fixed-length dynamic array [closed]
I am kinda new to VBA, and I cannot figure out how to implement a rolling computation. Here's an example of my data:
A C D E F ...
1
vote
1answer
126 views
Is there a wbo-like SAT-Solver for Python?
Is there a Python-Module / Program, that solves a SAT Problem? Probably a weighted Boolean one. (To be specific, something like wbo)
Or if not are there maybe bindings, or an API to use one of those ...
0
votes
1answer
77 views
Mathematica - Solving for the input of a taylor series such that coefficients are minimized
I need to find the value of a variable s such that the taylor expansion of an expression involving s:
Has a minimum (preferably zero, but due to binary minimum is sufficient) in as many coefficients ...
0
votes
0answers
50 views
My sudoku in js is not outputting the right number in the right place
I want to start off with saying that im new to javascript, so dont expect the code to be perfect.
The code I'm trying to create is supposed to solve a sudoku. I got everything to work until a certain ...
0
votes
1answer
50 views
Matlab: Using Ode23 on a continuous input span
I'm trying to figure out how to use ode23 for this.
I have a function:
function res = HardyWeinberg(inAFrequency, inFitness_AA, inFitness_Aa, inFitness_aa)
fA = inAFrequency;
wAA = ...
3
votes
1answer
121 views
Making my dictionary search more efficient
I created a boggle solver in Java and it takes around a minute and 30 seconds to solve a board and I'm convinced its because of the way I traverse through my dictionary. The idea is it checks to see ...
0
votes
0answers
26 views
Matlab gmres solver in windows and linux
I am using GMRES solver in matlab. Earlier I worked in windows with matlab R2010b and it converged nicely. But now, the same program is not converging in linux with R2013a. What could be the reason ...
2
votes
1answer
102 views
z3 number of solutions
How do I use z3 to count the number of solutions? For example, I want to prove that for any n, there are 2 solutions to the set of equations {x^2 == 1, y_1 == 1, ..., y_n == 1}. The following code ...
1
vote
1answer
139 views
8 tile solver with repeated nodes - Python
i'm trying to solve the 8tile puzzle using techniques like BFS search, DFS, Greedy and A* using Manhattan distance as my heuristic solution.
The problem is that while i can solve some good number of ...
0
votes
1answer
89 views
Solve for the missing variable with known formula
This is what I'm doing at the moment, but I'm just wondering if there is perhaps a better way?
My Kinematic Variable class just holds a long double value and a bool if the variable has been set or ...
4
votes
1answer
202 views
Referencing Solver32.dll from Access VBA
I have an Access database that will export data to a procedurally generated excel template for visibility, more complex calculations/visualization, and most importantly, it allows the user to play ...
1
vote
3answers
116 views
Constraint Satisfaction (Hierarchical) Solver
I need to model a constraint satisfaction (CSP) problem either in Java or .NET. The problem requires that a hierarchy of variables is represented. So every node of the tree is a variable.
For ...
0
votes
1answer
52 views
Reading a LP file with binary variables with GLPK
I am trying to read a very simple LP file into GLPK. This LP file has 4 variables of which 2 are binary, and seems that GLPK reads badly these 2 binary variables (HACE_MESAS, HACE_SILLAS). It logs:
...
0
votes
1answer
52 views
Maze dead end filter check
I created a program that runs through a ASCII maze but I wan't to create a filter for the following situation:
####
..X#
####
'#' means a wall.
'X' means the location.
'.' is the ...
0
votes
2answers
126 views
Matlab: poor accuracy of optimizers/solvers
I am having difficulty achieving sufficient accuracy in a root-finding problem on Matlab. I have a function, Lik(k), and want to find the value of k where Lik(k)=L0. Basically, the problem is that ...
2
votes
1answer
470 views
VBA Macro optimization using Solver in Excel not returning optimal variables
I am trying to optimize three parameters in Excel in order to minimize the error between a experimental value and a theoretical value. I use Solver for each parameter, one at a time, in a for loop. ...
0
votes
0answers
63 views
Sokoban solver - strategy in picking barrels?
I'm doing some research in making a Sokoban solver.
Untill now, I found some information about deadlocks, determing distances between pusher and barrels, tunnel and so on.
I didn't found some ...
-1
votes
1answer
196 views
DFS maze solver help please [closed]
so basically i have a program i need to make for class where we recursively created a maze and now we need to solve it non recursively. my problem is whenever i get to a dead end the program gets ...
0
votes
1answer
52 views
keep going out of bounds in my recursive method to navigate and find all combinations of letters in a 4X4 matrix
This is part of a Boggle solver.
I made a recursive method to traverse through a string matrix. MyLetteres has all the chars stored (ex. a, b, c...), MyLetteres1 is initialized as empty, and tracker ...
-3
votes
2answers
148 views
Multiple solutions Suduku [closed]
I am trying to print more than one solution for a suduko solver. My logic is that the moment I find one complete solution, I print it and start finding for more solutions. But my program is giving a ...
0
votes
1answer
52 views
find a value other than a root with fsolve in python's scipy
I know how I can solve for a root in python using scipy.optimize.fsolve.
I have a function defined
f = lambda : -1*numpy.exp(-x**2) and I want to solve for x setting the function to a certain ...
0
votes
0answers
22 views
Output Solver when all constraints are fulfilled
I have a solver macro and I want that the solver only outputs results when all constraints are fulfilled. So I think I'll need some kind of If statement.
Could you give me some advise?
2
votes
1answer
172 views
Multivariate Root Finding in Python
Using excel solver, it is easy to find a solution (optimum value for x and y )for this equation:
(x*14.80461) + (y * -4.9233) + (10*0.4803) ≈ 0
However, I can't figure out how to do this in ...
-1
votes
1answer
185 views
How can I solve this issue with quadratic programming in Java? [closed]
I need a lib (in Java) that solves this optimization problem. I tried to use the library JOptimizer (Does anyone have examples?), but am having issues using it.
If anyone knows of a tool (lib, ...
