C/C++
solver.asc
Associated article: A Dual-UI Constraint Equation Solver in C++
Tags: .NET C/C++ Tools
_A DUAL UI CONSTRAINT SOLVER IN C++_
by Larry Medwin
Listing One
/***** CALC.C --- simple tty interface to constraint solver.
#include <stdio.h>
#include "constraints.h"
extern int yyparse();
main()
{
Phase = INIT;
yyparse(); // Parse input
...


