Skip to content
Snippets Groups Projects
Commit 994efcd0 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Remove superfluous newlines

parent cd569810
No related branches found
No related tags found
No related merge requests found
...@@ -473,25 +473,25 @@ void testSteepFunction() { ...@@ -473,25 +473,25 @@ void testSteepFunction() {
int main() { int main() {
try { try {
testIdentity(); testIdentity();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testSampleFunction(); testSampleFunction();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testSampleFunctionNonsmooth(); testSampleFunctionNonsmooth();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testTrivialFunction(); testTrivialFunction();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testHorribleFunction(); testHorribleFunction();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testHorribleFunctionLogarithmic(); testHorribleFunctionLogarithmic();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testSampleFunction2(); testSampleFunction2();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testSampleFunction3D(); testSampleFunction3D();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testSampleFunctionSteep1(); testSampleFunctionSteep1();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testSampleFunctionSteep2(); testSampleFunctionSteep2();
std::cout << std::endl << std::endl << std::endl; std::cout << std::endl;
testSteepFunction(); testSteepFunction();
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment