summaryrefslogtreecommitdiff
path: root/omega/omega_lib/include/omega.h
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2016-09-17 03:22:53 +0000
committerTuowen Zhao <ztuowen@gmail.com>2016-09-17 03:22:53 +0000
commit75ff98e4d65862ff5b36b533b4f6e3ea71ede1d5 (patch)
tree498ac06b4cf78568b807fafd2619856afff69c28 /omega/omega_lib/include/omega.h
parent29efa7b1a0d089e02a70f73f348f11878955287c (diff)
downloadchill-75ff98e4d65862ff5b36b533b4f6e3ea71ede1d5.tar.gz
chill-75ff98e4d65862ff5b36b533b4f6e3ea71ede1d5.tar.bz2
chill-75ff98e4d65862ff5b36b533b4f6e3ea71ede1d5.zip
cmake build
Diffstat (limited to 'omega/omega_lib/include/omega.h')
-rw-r--r--omega/omega_lib/include/omega.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/omega/omega_lib/include/omega.h b/omega/omega_lib/include/omega.h
deleted file mode 100644
index 8aa2c08..0000000
--- a/omega/omega_lib/include/omega.h
+++ /dev/null
@@ -1,71 +0,0 @@
-/*********************************************************************
- Old license information from the Omega Project, updated one can be
- found in LICENSE file.
-
- Copyright (C) 1994-1996 by the Omega Project
- All rights reserved.
-
- NOTICE: This software is provided ``as is'', without any
- warranty, including any implied warranty for merchantability or
- fitness for a particular purpose. Under no circumstances shall
- the Omega Project or its agents be liable for any use of, misuse
- of, or inability to use this software, including incidental and
- consequential damages.
-
- License is hereby given to use, modify, and redistribute this
- software, in whole or in part, for any purpose, commercial or
- non-commercial, provided that the user agrees to the terms of this
- copyright notice, including disclaimer of warranty, and provided
- that this copyright notice, including disclaimer of warranty, is
- preserved in the source code and documentation of anything derived
- from this software. Any redistributor of this software or
- anything derived from this software assumes responsibility for
- ensuring that any parties to whom such a redistribution is made
- are fully aware of the terms of this license and disclaimer.
-
- The Omega project can be contacted at omega@cs.umd.edu
- or http://www.cs.umd.edu/projects/omega
-*********************************************************************/
-
-#ifndef Already_Included_Omega
-#define Already_Included_Omega
-
-/*
- * The presburger interface is divided into the following parts.
- * These parts are all included together, but are in separate
- * files to keep things organized a bit.
- *
- * In many files, you can include just some of the following,
- * specifically: if you are building a presburger tree, just
- * include "pres_tree.h"; if you are querying it, include
- * "pres_dnf.d" and "pres_conj.h"; if you are doing relational
- * operations, include "Relation.h"
- *
- * Most of the function definitions are in the .c files with
- * the same name as the .h that declares them, except:
- * the remap and push_exists functions are in pres_var.c
- * the DNFize functions are in pres_dnf.c
- * the functions involving printing are in pres_print.c
- * the beautify functions are in pres_beaut.c
- * the rearrange functions are in pres_rear.c
- * the compression functions are in pres_cmpr.c
- */
-
-#include <omega/omega_core/debugging.h>
-#include <omega/pres_var.h>
-#include <omega/pres_cnstr.h>
-#include <omega/pres_subs.h>
-#include <omega/pres_form.h>
-#include <omega/pres_logic.h>
-#include <omega/pres_decl.h>
-#include <omega/pres_quant.h>
-#include <omega/pres_conj.h>
-#include <omega/pres_cmpr.h>
-#include <omega/Relation.h>
-
-#include <omega/Rel_map.h>
-#include <omega/farkas.h>
-#include <omega/hull.h>
-#include <omega/closure.h>
-
-#endif