1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-17 23:07:05 +01:00

minor code cleaning

This commit is contained in:
2016-03-08 19:39:05 +00:00
parent a435caeecb
commit c6a8a1571b
2 changed files with 2 additions and 12 deletions

View File

@ -19,8 +19,7 @@
#include <LatAnalyze/TabFunction.hpp>
int main(int argc, char* argv[])
int main(void)
{
Latan::DVec xs(3);
xs << -1.0, 0.0, 1.0;
@ -48,4 +47,4 @@ int main(int argc, char* argv[])
double expected = (x > 0.5) ? 1.0 : ((x <= -0.5) ? 1.0 : 0.0);
std::cout << " ( " << expected << " expected)" << std::endl;
}
}
}