@@ -44,7 +44,7 @@ SCENARIO( "ReactionProduct" ) {
44
44
WHEN ( " the data is given explicitly" ) {
45
45
46
46
Multiplicity multiplicity (
47
- 1000 . , .9992414 , 1 , { 2 }, { 4 },
47
+ 1000 , .9992414 , 1 , { 2 }, { 4 },
48
48
{ 10 ., 1e+11 },
49
49
{ 1 ., 1 . } );
50
50
Distribution distribution =
@@ -106,7 +106,7 @@ SCENARIO( "ReactionProduct" ) {
106
106
WHEN ( " the data is given explicitly" ) {
107
107
108
108
Multiplicity multiplicity (
109
- 1000 . , .9992414 , 2 , { 2 }, { 4 },
109
+ 1000 , .9992414 , 2 , { 2 }, { 4 },
110
110
{ 10 ., 1e+11 },
111
111
{ 1 ., 1 . } );
112
112
Distribution distribution =
@@ -161,7 +161,7 @@ SCENARIO( "ReactionProduct" ) {
161
161
162
162
WHEN ( " the data is given explicitly" ) {
163
163
164
- Multiplicity multiplicity ( 11 . , 5.438673E-4 , 8 , { 2 }, { 2 },
164
+ Multiplicity multiplicity ( 11 , 5.438673E-4 , 8 , { 2 }, { 2 },
165
165
{ 10 ., 1 .e +11 }, { 1 ., 1 . } );
166
166
Distribution distribution = EnergyTransfer ( { 2 }, { 2 },
167
167
{ 10 ., 1 .e +11 },
@@ -210,7 +210,7 @@ SCENARIO( "ReactionProduct" ) {
210
210
GIVEN ( " an inconsistent LAW between the Multiplicity and the Distribution" ) {
211
211
212
212
Multiplicity multiplicity (
213
- 1000 . , .9992414 , 2 , { 2 }, { 4 },
213
+ 1000 , .9992414 , 2 , { 2 }, { 4 },
214
214
{ 10 ., 1e+11 },
215
215
{ 1 ., 1 . } );
216
216
Distribution distribution =
@@ -432,11 +432,11 @@ std::string chunkWithLAW8() {
432
432
433
433
void verifyChunkWithLAW8 ( const ReactionProduct& chunk ) {
434
434
435
- CHECK_THAT ( 11 , WithinRel ( chunk.ZAP () ) );
435
+ CHECK ( 11 == chunk.ZAP () );
436
436
CHECK_THAT ( 5.438673e-4 , WithinRel ( chunk.AWI () ) );
437
437
CHECK ( 8 == chunk.LAW () );
438
438
439
- CHECK_THAT ( 11 , WithinRel ( chunk.multiplicity ().ZAP () ) );
439
+ CHECK ( 11 == chunk.multiplicity ().ZAP () );
440
440
CHECK_THAT ( 5.438673e-4 , WithinRel ( chunk.multiplicity ().AWI () ) );
441
441
442
442
CHECK ( 8 == chunk.multiplicity ().LAW () );
0 commit comments