Skip to content
Snippets Groups Projects
cs_demo2.c 208 B
Newer Older
  • Learn to ignore specific revisions
  • Lubomir Riha's avatar
    Lubomir Riha committed
    #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) ;
    }