Håvard Fossli

Results 159 comments of Håvard Fossli

I think my new idea might be flawed after all... :( maybe @kongtomorrow has some ideas?

My suggestion is to improve one of my earlier suggestions in this thread. Introduce a new function `AM_API bool am_isunderconstrained (am_Variable *var);` It could do the following: 1. Check if...

I ran out of time and that feature was put in backlog unfortunately. I think I made it work the way I described it. I guess it messes up stays...

> So, in my C++11 solution, I'm trying to construct constraint in pure C++ way, recording all variable and terms it used, and when add to solver, it will be...

Can you explain `int am_mergeconstraint(am_Constraint *cons, am_Constraint *other, double multiplier)`? Does it just add all terms from another constraint? What happens when a constraint already is added to the solver...

1. I like it. This is different from Kiwi, but I like it! 2. Brilliant!

Thanks for that thorough explanation! Very useful! I am making progress here. This is f***ing amazing! This is done using only pointers and no wrappers (except for the solver) ```...

I see! But what if I call am_usevariable() and friends? Still wild pointers?

> notice that if you set relation to and if you set relation to >=, all terms before this remaining position, and following added terms will be negative when you...

Good idea. Can I see the preliminary c++ code?