diff options
Diffstat (limited to 'tempalte/main.cpp')
-rw-r--r-- | tempalte/main.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tempalte/main.cpp b/tempalte/main.cpp index b1ce4e1..2786234 100644 --- a/tempalte/main.cpp +++ b/tempalte/main.cpp @@ -2,13 +2,17 @@ #include "include/praktable.hpp" -using table = prak::table<double>; +using table = prak::table<f64>; +using f64p = prak::pvalue<f64>; +using f64v = std::vector<f64>; +using vecarg = const std::vector<f64> &; +using argvec = const std::vector<f64> &; -void ex1(void) { - table t; +void ex1(std::string file) { + table t(file); } int main() { - ex1(); + ex1("data"); return 0; } |