aboutsummaryrefslogtreecommitdiff
path: root/Carpet/LoopControl/src/lc_hill.h
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/LoopControl/src/lc_hill.h')
-rw-r--r--Carpet/LoopControl/src/lc_hill.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/Carpet/LoopControl/src/lc_hill.h b/Carpet/LoopControl/src/lc_hill.h
deleted file mode 100644
index 7d418314b..000000000
--- a/Carpet/LoopControl/src/lc_hill.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef LC_HILL_H
-#define LC_HILL_H
-
-#include <cctk.h>
-
-#include "loopcontrol.h"
-
-
-
-/* no typedef here; forward declcared in loopcontrol.h */
-struct lc_hill_state_t {
- int iteration;
-
- lc_state_t best;
- double best_time;
- int have_best;
-
- int excursion_start; /* -1 if not on an excursion */
-
- lc_state_t previous;
- double previous_time;
- int have_previous;
-
- lc_state_t state;
- double time;
-};
-
-
-
-void
-lc_hill_init (lc_statset_t * restrict const ls,
- lc_state_t * restrict const state);
-
-void
-lc_hill_finish (lc_statset_t * restrict const ls,
- lc_stattime_t const * restrict const lt);
-
-#endif /* #ifndef LC_HILL_H */