Add exception handlers to all tutorials and examples

This commit is contained in:
Andreas Lauser
2013-09-03 14:41:38 +02:00
parent a26483b51d
commit 51cb4f2cb8
12 changed files with 57 additions and 0 deletions

View File

@@ -41,6 +41,7 @@
int
main()
try
{
typedef AutoDiff::Forward<double> AdFW;
@@ -69,3 +70,8 @@ main()
std::cout << "a - 1: " << (a - 1) << '\n';
std::cout << "a - b: " << (a - b) << '\n';
}
catch (const std::exception &e) {
std::cerr << "Program threw an exception: " << e.what() << "\n";
throw;
}

View File

@@ -193,6 +193,7 @@ BOOST_AUTO_TEST_CASE(Addition)
#include <iostream>
int main()
try
{
typedef AutoDiff::ForwardBlock<double> ADB;
std::vector<int> blocksizes = { 3, 1, 2 };
@@ -233,4 +234,8 @@ int main()
m.insert(1,1) = 1;
std::cout << m*sqx;
}
catch (const std::exception &e) {
std::cerr << "Program threw an exception: " << e.what() << "\n";
throw;
}
#endif

View File

@@ -83,6 +83,7 @@ BOOST_FIXTURE_TEST_CASE(Construction, TestFixture<SetupSimple>)
}
BOOST_FIXTURE_TEST_CASE(SurfaceDensity, TestFixture<SetupSimple>)
{
Opm::BlackoilPropsAd boprops_ad(props);

View File

@@ -63,3 +63,5 @@ BOOST_AUTO_TEST_CASE(ScalarMultiplication)
BOOST_CHECK_EQUAL( x3.value().cwiseNotEqual( y3.value() ).count(), 0 );
}

View File

@@ -31,6 +31,7 @@ BOOST_AUTO_TEST_CASE(Initialisation)
}
BOOST_AUTO_TEST_CASE(Addition)
{
typedef AutoDiff::Forward<double> AdFW;