Jacob Finkelman
Jacob Finkelman
I am porting my apps to the new winapi for better compile times, but I am still compiling the old winapi one for this dependency. Can we get this updated?...
Haw dose one install on windows? can we add some info to the readme? if it is not compatible, document that as well.
Thank you! I love any progress in the Rust SAT space. varisat has an api witch I have used extensively for testing libraries I work on. Would you be interested...
My main use of this algorithm is in [pandana](https://github.com/UDST/pandana) ware the common need is to for each knode, calculate summary statistics about all the nodes that are within a thresholded.
Section 3.4 of the paper describes using gradient descent with a 2-point method for computing the gradient vector. This basically involves doing `O(d)` function calls to find the approximate gradient...
Many people in the rust community are excited to see this project! Both because it is in Rust, and because we want to use it on Rust projects. Is there...
Thank you for the library, it is working really well. I was wondering if it is possible to specify what happens when my page is printed. I have not fully...
I was experimenting with using a `RedBlackTree` as a priority queue and ended up with: ```rust let next_work = queue.first(); if let Some(k) = next_work { queue.remove_mut(k); } ``` It...
I was trying to look up if `new()` allocates on the heap, or if like std it only allocates when the first item is inserted. Then I wanted to know...
Hi, I am in over my head. But it comes up from time to time that cargo could use a SAT solver to get faster or more reliable results. And...