# RefCode **Repository Path**: zhaoli0321/refcode ## Basic Information - **Project Name**: RefCode - **Description**: No description available - **Primary Language**: C - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-09 - **Last Updated**: 2024-09-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # RefCode ## Introduction There is a sample code for a competition. ## Structure of code ``` README instructions on installation main.c solver code sample io.h read matrix file operator.h check answer file Makefile Compile file ``` ## Installation You need to update compiler and compile path in file Makefile and run the command: > **make** ## run command After installation, an executable file will be generated as follows: ``` main solver sample ``` ## Output ``` Reading CSR matrix from a binary file A_bin.dat Reading right-hand side vector from a binary file b_bin.dat Start solving linear systems ... Start checking ... Check total time : 0.042969 ms Check || b - Ax || 2 / || b || 2 = 1.000000e+00 End! ```