/*
* CP264: Data Structures II, Spring 2018, Wilfrid Laurier University
* Template Created by: Qutaiba Albluwi
*/
/*
-------------------------------------------------------
Author: Your Name
ID: Your ID
Course: CP264 Spring 2018
Category: Assignment 3 (Matrix Classifier)
-------------------------------------------------------
*/
# include
# include "matrix.h"
# include "test.h"
//-------------------------------------------------------------------
int main(){
setbuf(stdout, NULL); // simple way to turn standard output buffering completely off
//testMatrixFunction(1); //test specific function - change argument
//testAll(); //turn this ON to test all functions
return 0;
}