Stephen Kong
Stephen Kong
1. Most of these algorithms works with continuous variables. But is it possible for DE (for example) to works with discrete integer variables? 2. I want to learn more about...
I am unable to find any API doc of RepeatingBasisFunction (Specially the input parameters), and any background information about how Repeating Basis function works.
double y = 290; ht_insert(&table, "HELL", &y); double* k = (double*)ht_lookup(&table, "HELLO"); if (k) printf("[%s]'s value is: [%f]\n", "HELLO", *k); else printf("[%s] NOT FOUND!\n", "HELLO"); ===================== [HELLO]'s value is: [290.000000]
1. Are ht_contains(..) and ht_lookup(..) thread-safe where they can be called in the child threads simultaneously? 2. What's the difference between ht_setup(...) and ht_reserve(...)? Is ht_reserve an optional function?