Initial snark14m import
[snark14.git] / src / snark / alb2.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/alb2.cpp $
5 $LastChangedRevision: 85 $
6 $Date: 2014-07-02 16:07:08 -0400 (Wed, 02 Jul 2014) $
7 $Author: agulati $
8 ***********************************************************
9
10 CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
11 C
12 C     DUMMY RECONSTRUCTION ALGORITHM - TO BE REPLACED BY USER
13 C     THIS USER ALGORITHM MUST BE CAPABLE OF PERFORMING A BLOB RECONSTRUCTION
14 C
15 CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
16 */
17
18 #include <cstdio>
19
20 #include "blkdta.h"
21 #include "uiod.h"
22
23 #include "alb2.h"
24
25 BOOLEAN alb2_class::Run(REAL* recon, INTEGER* list, REAL* weight, INTEGER iter)
26 {      
27   fprintf(output, "\n          This is the dummy version of ALB2.");
28   fprintf(output, "\n          If you wish to use such a routine, then you");
29   fprintf(output, "\n          should replace it by your own version of it.");
30
31
32   return FALSE;
33 }