Initial snark14m import
[snark14.git] / src / snark / trm4.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/trm4.h $
5  $LastChangedRevision: 122 $
6  $Date: 2014-07-09 18:18:59 -0400 (Wed, 09 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9
10  Implementation of the indicator function I(x) used for MLEM-STOP
11
12  */
13
14 #ifndef TRM4_H
15 #define TRM4_H
16
17 #include "termtest.h"
18
19 class trm4_class: public termtest_class
20 {
21 private:
22         BOOLEAN report;REAL skips;
23 public:
24         void Init();
25         BOOLEAN Run(REAL* recon, INTEGER* list, REAL* weight, INTEGER iter);
26 };
27
28 #endif