Show
Ignore:
Timestamp:
07/31/09 08:38:18 (15 years ago)
Author:
vbarta
Message:

custom test location for harness tests (extended UnitTest?++), configurable tolerance - all tests pass (most of the time)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/square_mat_stress.cpp

    r438 r456  
    11#include "../bdm/math/square_mat.h" 
    22#include "../bdm/math/chmat.h" 
    3 #include "mat_checks.h" 
    43#include "UnitTest++.h" 
    54#include "TestReporterStdout.h" 
     
    1918namespace UnitTest 
    2019{ 
     20 
     21// can't include mat_checks.h because CheckClose is different in this file 
     22extern bool AreClose(const itpp::vec &expected, const itpp::vec &actual, 
     23                     double tolerance); 
     24 
     25extern bool AreClose(const itpp::mat &expected, const itpp::mat &actual, 
     26                     double tolerance); 
    2127 
    2228void CheckClose(TestResults &results, const itpp::mat &expected,