Added Copyright information

This commit is contained in:
2018-12-10 12:05:48 -05:00
parent 070a568dca
commit c6794e1c6f
5 changed files with 751 additions and 9 deletions

View File

@@ -1,8 +1,24 @@
//myClasses/Algorithms.cpp
//Matthew Ellison
// Created: 11-14-18
//Modified: 11-14-18
//Modified: 12-10-18
//This is the file that tests all my algorithms, both for speed and accuracy
/*
Copyright (C) 2018 Matthew Ellison
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <iostream>
@@ -14,6 +30,7 @@
#include "Stopwatch.hpp"
//Defines a type for functions so there can be an array of functions
typedef bool (*boolFn)();