Exemplo n.º 1
0
int main(int argc, char **argv)
{
    test_construct();
    test_simple();
    test_update();
    test_multiple_keys();
    test_function_update();
    test_free_null();
    test_negative_size();
    test_clear();
    return 0;
}
Exemplo n.º 2
0
int main() {

  std::vector<std::tuple<long,float,float>> rdata;
  //populates rdata
  for ( int i= 0 ; i< 1600;i++) {
    std::tuple<long,float,float> t = std::make_tuple(i, i/1.0 ,0);
    rdata.emplace_back(t);
  }
  quotek::data::records r1(rdata);

  test_construct(r1);
  test_down_sample(r1);
  test_stream(r1);

  exit(0);

}