// CSparse/Demo/cs_demo2: demo program for CSparse // CSparse, Copyright (c) 2006-2022, Timothy A. Davis. All Rights Reserved. // SPDX-License-Identifier: LGPL-2.1+ #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) ; }