~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

Viewing changes to src/bin/detci/olsengraph.cc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-06-07 16:49:57 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080607164957-8pifvb133yjlkagn
Tags: 3.3.0-3
* debian/rules (DEB_MAKE_CHECK_TARGET): Do not abort test suite on
  failures.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${bindir} to /usr/lib/psi.
* debian/rules (install/psi3): Move psi3 file to /usr/bin.
* debian/patches/07_464867_move_executables.dpatch: New patch, add
  /usr/lib/psi to the $PATH, so that the moved executables are found.
  (closes: #464867)
* debian/patches/00list: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include "odometer.h"
36
36
 
37
37
 
38
 
/* #define DEBUG */
 
38
//#define DEBUG  
39
39
 
40
40
/* FUNCTION PROTOTYPES for this module */
41
41
void olsengraph(struct olsen_graph *Graph, int ci_orbs, int num_el, 
160
160
     str_abs2rel(Parameters.filter_guess_Jb, &Parameters.filter_guess_Jbridx, 
161
161
                 &Parameters.filter_guess_Jbc, BetaG);
162
162
   }
 
163
   if (Parameters.zero_det) {
 
164
     str_abs2rel(Parameters.zero_det_Ia, &Parameters.zero_det_Iaridx, 
 
165
                 &Parameters.zero_det_Iac, AlphaG);
 
166
     str_abs2rel(Parameters.zero_det_Ib, &Parameters.zero_det_Ibridx, 
 
167
                 &Parameters.zero_det_Ibc, BetaG);
 
168
   }
 
169
   for (i=0; i<Parameters.follow_vec_num; i++) {
 
170
     str_abs2rel(Parameters.follow_vec_Ia[i], Parameters.follow_vec_Iaridx+i,
 
171
       Parameters.follow_vec_Iac+i, AlphaG);
 
172
     str_abs2rel(Parameters.follow_vec_Ib[i], Parameters.follow_vec_Ibridx+i,
 
173
       Parameters.follow_vec_Ibc+i, BetaG);
 
174
   }
 
175
 
163
176
}
164
177
 
165
178