/* 1 2 nextafter(x,y) == next value following x in the direction of y */ double nf_nextafter(const Node *n, const Cell *c) { Node *r = Right(n); return nextafter( eval_tree( r, c), eval_tree( r->next, c) ); }