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