Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上就是这样。
我所能找到的只是解决仅涉及不等式的问题的库,而我的特定问题也屏蔽了一些平等。
我自己想出了答案!
我不敢相信我之前没有意识到这一点。
基本上,如果你有类似的东西:
a x + b y + c*z = d
这与以下内容完全相同:
a x + b y + c z <= d AND a x + b y + c z >= d
这就是所有的不平等:)