Initial snark14m import
[snark14.git] / src / snark / alg.cpp
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/alg.cpp $
5  $LastChangedRevision: 85 $
6  $Date: 2014-07-02 16:07:08 -0400 (Wed, 02 Jul 2014) $
7  $Author: agulati $
8  ***********************************************************
9  */
10
11 #include "alg.h"
12
13 INTEGER alg_class::Init()
14 {
15         return 0;
16 }
17
18 BOOLEAN alg_class::Run(REAL* recon, INTEGER* list, REAL* weight, INTEGER iter)
19 {
20         return FALSE;
21 }
22
23 INTEGER alg_class::Reset()
24 {
25         return 0;
26 }