/* 1 2 minimum of two values */ double nf_fmin(const Node *n, const Cell *c) { Node *r = Right(n); return fmin( eval_tree( r, c), eval_tree( r->next, c) ); }