Skip to content
Snippets Groups Projects
Commit de76c680 authored by Oliver Sander's avatar Oliver Sander Committed by sander@FU-BERLIN.DE
Browse files

fix template argument order of the TargetSpace classes

[[Imported from SVN: r8350]]
parent 96696f01
No related branches found
No related tags found
No related merge requests found
......@@ -70,15 +70,15 @@ int main() try
std::cout << std::setw(15) << std::setprecision(12);
test<RealTuple<1>, 1>();
test<RealTuple<double,1>, 1>();
test<UnitVector<2>, 1>();
test<UnitVector<3>, 1>();
//test<UnitVector<2>, 2>();
//test<UnitVector<3>, 2>();
test<UnitVector<double,2>, 1>();
test<UnitVector<double,3>, 1>();
//test<UnitVector<double,2>, 2>();
//test<UnitVector<double,3>, 2>();
test<Rotation<3,double>, 1>();
//test<Rotation<3,double>, 2>();
test<Rotation<double,3>, 1>();
//test<Rotation<double,3>, 2>();
} catch (Exception e) {
std::cout << e << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment