summaryrefslogtreecommitdiff
path: root/src/main/portfolio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/portfolio.h')
-rw-r--r--src/main/portfolio.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/main/portfolio.h b/src/main/portfolio.h
deleted file mode 100644
index 2cb23d5c5..000000000
--- a/src/main/portfolio.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/********************* */
-/*! \file portfolio.h
- ** \verbatim
- ** Top contributors (to current version):
- ** Morgan Deters, Kshitij Bansal
- ** This file is part of the CVC4 project.
- ** Copyright (c) 2009-2019 by the authors listed in the file AUTHORS
- ** in the top-level source directory) and their institutional affiliations.
- ** All rights reserved. See the file COPYING in the top-level source
- ** directory for licensing information.\endverbatim
- **
- ** \brief Provides (somewhat) generic functionality to simulate a
- ** (potentially cooperative) race
- **/
-
-#ifndef CVC4__PORTFOLIO_H
-#define CVC4__PORTFOLIO_H
-
-#include <boost/function.hpp>
-#include <utility>
-
-#include "options/options.h"
-#include "smt/command.h"
-#include "smt/smt_engine.h"
-#include "util/statistics_registry.h"
-
-namespace CVC4 {
-
-template<typename T, typename S>
-std::pair<int, S> runPortfolio(int numThreads,
- boost::function<T()> driverFn,
- boost::function<S()> threadFns[],
- size_t stackSize,
- bool optionWaitToJoin,
- TimerStat& statWaitTime);
-// as we have defined things, S=void would give compile errors
-// do we want to fix this? yes, no, maybe?
-
-}/* CVC4 namespace */
-
-#endif /* CVC4__PORTFOLIO_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback