File indexing completed on 2026-04-09 07:49:06
0001 #include "SPropMockup.h"
0002 #include "QPropTest.h"
0003
0004 int main(int argc, char** argv)
0005 {
0006 const NP* propcom = SPropMockup::CombinationDemo();
0007 if(propcom == nullptr) std::cerr << "SPropMockup::CombinationDemo() giving null " << std::endl ;
0008 if(propcom == nullptr) return 0 ;
0009
0010 std::cout << " propcom " << ( propcom ? propcom->sstr() : "-" ) << std::endl ;
0011
0012
0013 int nx = 1601 ;
0014
0015 QPropTest<float> qpt(propcom, 0.f, 16.f, nx ) ;
0016 qpt.lookup();
0017 qpt.save();
0018
0019 return 0 ;
0020 }
0021