#pragma once #include #include #include #include #include #include #include #include #include using namespace std; class choice { public: vector id; string ch = ""; int dvs = 0; vector dv; float corr = 0; choice(vector id) { sort(id.begin(), id.end()); this->id = id; } choice(vector id, int dvs, string choice, float corr, vector dv) { sort(id.begin(), id.end()); this->id = id; this->dvs = dvs; this->ch = choice; this->corr = corr; this->dv = dv; } }; void CORDS(string ifnm, string ofnm, string scols);