aboutsummaryrefslogtreecommitdiff
path: root/Carpet/LoopControl/src/lc_auto.h
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2007-10-10 13:39:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2007-10-10 13:39:00 +0000
commit3215a191496ef0f9807d3b574151e91ebc27ca8a (patch)
tree8536bd7c3c3f0ff0a44d2a7b030b5881b0179b8e /Carpet/LoopControl/src/lc_auto.h
parente15f981b761acb114010667880ef59fd508ee41a (diff)
LoopControl: Big update, introducing a hill climbing algorithm
darcs-hash:20071010133923-dae7b-a3406485d61ab795191655c89a16e2ae2c487978.gz
Diffstat (limited to 'Carpet/LoopControl/src/lc_auto.h')
-rw-r--r--Carpet/LoopControl/src/lc_auto.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/Carpet/LoopControl/src/lc_auto.h b/Carpet/LoopControl/src/lc_auto.h
index a0c7b1798..a89db6aa8 100644
--- a/Carpet/LoopControl/src/lc_auto.h
+++ b/Carpet/LoopControl/src/lc_auto.h
@@ -8,18 +8,13 @@
-typedef struct lc_auto_position_t {
- int topology;
- int tiling[3];
-} lc_auto_position_t;
-
/* no typedef here; forward declcared in loopcontrol.h */
struct lc_auto_state_t {
lc_siman_params_t siman_params;
gsl_rng * rng;
lc_siman_state_t * siman_state;
- lc_auto_position_t position;
+ lc_state_t state;
double time;
};
@@ -27,8 +22,7 @@ struct lc_auto_state_t {
void
lc_auto_init (lc_statset_t * restrict const ls,
- int * restrict const topology,
- int tiling[3]);
+ lc_state_t * restrict const state);
void
lc_auto_finish (lc_statset_t * restrict const ls,