Skip to content

Instantly share code, notes, and snippets.

@janetournois
Created May 30, 2016 13:31
Show Gist options
  • Save janetournois/2b687bb7c36d028c71c5307330c252aa to your computer and use it in GitHub Desktop.
Save janetournois/2b687bb7c36d028c71c5307330c252aa to your computer and use it in GitHub Desktop.
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <iostream>
typedef CGAL::Exact_predicates_exact_constructions_kernel Epec;
int main(int argc, char* argv[])
{
Epec::FT toto = 0;
Epec::FT one = 1.;
for (int i = 0; i < 5000; ++i)
toto += one;
std::cout << toto << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment