Compare commits

..

No commits in common. "42daff8a4c5b2f2643f25c6e1fe82365c35d8046" and "9027c0c4ff2837df5d56015a405d6794881f251d" have entirely different histories.

5 changed files with 2 additions and 25 deletions

3
.gitignore vendored
View File

@ -34,6 +34,3 @@
# Build directory
build
# Clang files
.cache

View File

@ -1,2 +1 @@
add_subdirectory(arff)
add_subdirectory(onerule)

View File

@ -1,5 +1,5 @@
add_executable(arff
main.cpp
arff.cpp
./main.cpp
./arff.cpp
)

View File

@ -1,6 +0,0 @@
include_directories(../arff)
add_executable(onerule
main.cpp
../arff/arff.cpp
)

View File

@ -1,13 +0,0 @@
/*
* Author: Gregory Crawford
* Date: 2024-03-18
* Description: Read and store ARFF data from a file
*/
#include "arff.hpp"
int main(int argc, char* argv[]) {
ARFF::ParseArguments(argc, argv);
ARFF::Arff data;
data.Read(ARFF::GetDataFilename());
data.Print();
}