Questions tagged [solver]

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.

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. A solver takes problem descriptions in some sort of generic form and calculate their solution. In a solver, the emphasis is on creating a program or library that can easily be applied to other problems of similar type.

For more information about the topic, please visit http://en.wikipedia.org/wiki/Solver .

1397 questions
-6
votes
1 answer

Calculator, using python, 0 used 1st, it never recognizes the second input to calculate.

print("1: ADDITION") print("2: SUBTRACTION") print("3: MULTIPLICATION") print("4: DIVISION") CHOICE = input("Enter the Numbers:") if CHOICE == "1": num1 =(input("Enter the value of num1:")) if num1=="0": #if 0 is used print ("Invalid…
-7
votes
1 answer

Minimize a linear programming system in C

I need to minimize a huge linear programming system where all related data (objective function, constraints) are stored in the memory in arrays and structures but not in lp file format or CPLEX I saw that there are many solvers like here and here…
Noah16
  • 296
  • 1
  • 11
1 2 3
93
94