-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathowens_prb.cpp
60 lines (51 loc) · 962 Bytes
/
owens_prb.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# include <cmath>
# include <cstdlib>
# include <iomanip>
# include <iostream>
# include "owens.hpp"
using namespace std;
int main ( );
//****************************************************************************80
int main ( )
//****************************************************************************80
//
// Purpose:
//
// MAIN is the main program for OWENS_PRB.
//
// Discussion:
//
// OWENS_PRB tests the OWENS library.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 14 July 2017
//
// Author:
//
// John Burkardt
//
{
timestamp ( );
cout << "\n";
cout << "OWENS_PRB:\n";
cout << " C++ version\n";
cout << " Test the OWENS library.\n";
bivnor_test ( );
t_test ( );
znorm1_test ( );
znorm2_test ( );
//
// Terminate.
//
cout << "\n";
cout << "OWENS_PRB:\n";
cout << " Normal end of execution.\n";
cout << "\n";
timestamp ( );
return 0;
}