Select Git revision
Lubomir Riha authored
cs_demo2.c 208 B
#include "cs_demo.h"
/* cs_demo2: read a matrix and solve a linear system */
int main (void)
{
problem *Prob = get_problem (stdin, 1e-14) ;
demo2 (Prob) ;
free_problem (Prob) ;
return (0) ;
}