X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=svrt.git;a=blobdiff_plain;f=misc.cc;fp=misc.cc;h=3affb33983a4f8122b647b3c73e41d085f239f94;hp=ddcaf6d4588b50cb4f83576de85213bb7f9fec5f;hb=471b18a7f4e9cbdfb510f304260ec5e6baeee697;hpb=4cbdf193cd4e79a68e10a651825d089369e6214d diff --git a/misc.cc b/misc.cc index ddcaf6d..3affb33 100644 --- a/misc.cc +++ b/misc.cc @@ -27,68 +27,3 @@ using namespace std; #include "misc.h" - -char *next_word(char *buffer, char *r, int buffer_size) { - char *s; - s = buffer; - - if(r != 0) { - while((*r == ' ') || (*r == '\t') || (*r == ',')) r++; - if(*r == '"') { - r++; - while((*r != '"') && (*r != '\0') && - (s 0) { - s += n[k] * log(scalar_t(n[k])); - t += n[k]; - } - return (log(t) - s/scalar_t(t))/log(2.0); -} - -void random_permutation(int *val, int nb) { - for(int k = 0; k < nb; k++) val[k] = k; - int i, t; - for(int k = 0; k < nb - 1; k++) { - i = int(drand48() * (nb - k)) + k; - t = val[i]; - val[i] = val[k]; - val[k] = t; - } -} - -void tag_subset(bool *val, int nb_total, int nb_to_tag) { - ASSERT(nb_to_tag <= nb_total); - int index[nb_total]; - random_permutation(index, nb_total); - for(int n = 0; n < nb_total; n++) val[n] = false; - for(int n = 0; n < nb_to_tag; n++) val[index[n]] = true; -} - -int compare_couple(const void *a, const void *b) { - if(((Couple *) a)->value < ((Couple *) b)->value) return -1; - else if(((Couple *) a)->value > ((Couple *) b)->value) return 1; - else return 0; -}