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

« back to all changes in this revision

Viewing changes to src/bin/cceom/Params.h

  • 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:
7
7
  int ref;
8
8
  int eom_ref;
9
9
  int local;
 
10
  char *wfn;
 
11
  int semicanonical;
 
12
  int full_matrix; /* include reference rows/cols in diagonalization */
 
13
  char *abcd;
 
14
  int t3_Ws_incore;
10
15
};
11
16
 
12
17
struct Eom_params {
15
20
  int *states_per_irrep;
16
21
  int *cs_per_irrep;
17
22
  double eval_tol;
 
23
  double eval_tol_SS;
18
24
  double residual_tol;
19
25
  int prop_root;
20
26
  int prop_sym;
27
33
  int excitation_range;
28
34
  double residual_tol_SS;
29
35
  char *guess;
 
36
  int rhf_triplets;
 
37
  int mult;
 
38
  int follow_root;
 
39
  int restart_vectors_per_root;
 
40
  int skip_diagSS;
 
41
  int vectors_cc3;
 
42
  int restart_eom_cc3;
30
43
 
31
44
  /* compute overlap of normalized R with L (must run cclambda first) */
32
45
  int dot_with_L;