Tagged Questions
3
votes
5answers
561 views
Solving an inequality for minimum value
I'm working on a programming problem which boils down to a set of an equation and inequality:
x[0]*a[0] + x[1]*a[1] + ... x[n]*a[n] >= D
x[0]*b[0] + x[1]*b[1] + ... x[n]*b[n] = C
I want to ...
2
votes
2answers
85 views
Python: Pass inequality as string in dict for evaluation
I need to pass inequalities to a function for evaluation within the function. Is there a way to evaluation the inequality if passed as a string? Or must I pass a representation of the inequality and ...