summaryrefslogtreecommitdiff
path: root/src/main/portfolio.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-09-06 20:52:16 -0500
committerGitHub <noreply@github.com>2019-09-06 20:52:16 -0500
commit1c09572e0e2031519a103caa2a4af0d9bd34a9c5 (patch)
tree576012b4e9434bd4b8472b5df766d3836d3145b9 /src/main/portfolio.h
parent856701f3b2154646eab6b7898fa33e5917322a7b (diff)
Remove portfolio (#3236)
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