Initial snark14m import
[snark14.git] / src / snark / trm3.h
1 /* 
2  ***********************************************************
3  $SNARK_Header: S N A R K  1 4 - A PICTURE RECONSTRUCTION PROGRAM $
4  $HeadURL: svn://dig.cs.gc.cuny.edu/snark/trunk/src/snark/trm3.h $
5  $LastChangedRevision: 122 $
6  $Date: 2014-07-09 18:18:59 -0400 (Wed, 09 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9
10  trm3.h,v 1.2 2008/08/25 16:11:09 jklukowska Exp
11 */
12
13 #ifndef TRM3_H
14 #define TRM3_H
15       
16 #include <cstdio>
17 #include <cstdlib>
18
19 #include "infile.h"
20
21 // bug220 - allow user args for termination tests - swr - 1/30/07
22
23 #include "termtest.h"
24
25 class trm3_class: public termtest_class
26 {
27  private:
28   REAL epsiln;
29  public:
30   void Init();
31   BOOLEAN Run(REAL* recon, INTEGER* list, REAL* weight, INTEGER iter);
32 };
33      
34 #endif