Reranker Framework (ReFr)
Reranking framework for structure prediction and discriminative language modeling
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
environment-test.C
Go to the documentation of this file.
1 
5 #include <iostream>
6 #include <memory>
7 
8 #include "environment-impl.H"
9 
10 using namespace std;
11 using namespace reranker;
12 
13 int
14 main(int argc, char **argv) {
15  int debug = 1;
16  Environment *env = new EnvironmentImpl(debug);
17  delete env;
18 }
Provides a set of named variables and their types, as well as the values for those variables...
Provides an environment for variables and their values, either primitive or Factory-constructible obj...
int main(int argc, char **argv)
An interface for an environment in which variables of various types are mapped to their values...
Definition: environment.H:125