diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-12-04 22:32:12 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-12-04 22:32:12 +0300 |
commit | 8269ece153d9f8d1a8a5fb7238adce6aa4226f99 (patch) | |
tree | da560c3866ac00ebb65699cb6bac0e199a877835 /tempalte/main.cpp | |
parent | c031795880d2ff2d3b64864a4ba68280a91d21c3 (diff) |
added vtek7
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; } |