Omega: Operations on Presburger arithmetic formulae

[ bsd3, data, library ] [ Propose Tags ]

This package provides tools for manipulating sets and relations whose members can be represented compactly as a Presburger arithmetic formula. The primary interface can be found in Data.Presburger.Omega.Set and Data.Presburger.Omega.Rel. The Omega library (http://github.com/davewathaverford/the-omega-project) must be installed to build this package.


[Skip to Readme]

Modules

[Last Documentation]

  • Data
    • Presburger
      • Omega
        • Data.Presburger.Omega.Expr
        • Data.Presburger.Omega.LowLevel
        • Data.Presburger.Omega.Rel
        • Data.Presburger.Omega.Set

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.1, 0.1.2, 0.1.3, 0.2.0, 0.2.1, 0.2.2, 1.0, 1.0.1, 1.0.2, 1.0.3
Dependencies base (>=3 && <4), containers [details]
License BSD-3-Clause
Author Christopher Rodrigues
Maintainer cirodrig@illinois.edu
Category Data
Uploaded by ChristopherRodrigues at 2009-06-24T03:00:17Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 8664 total (23 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-31 [all 7 reports]

Readme for Omega-0.1.1

[back to package description]
Omega -- Operations on Presburger arithmetic formulae

BUILDING INSTRUCTIONS
---------------------

This is a Cabal package.  The typical build process is:

	runhaskell Setup.hs configure
	runhaskell Setup.hs build
	runhaskell Setup.hs install

This package requires the C++ Omega library to be installed
(http://github.com/davewathaverford/the-omega-project).  Because this package
contains C++ source code, Cabal will probably need help finding the required
headers and libraries.

You will probably need to provide the paths to the C++ include directory
(contains STL headers such as "vector") and library directory (contains the
C runtime library, called "libstdc++.so" on GNU Linux systems).  If the C++
Omega library is not installed in a standard place, you will also need to
provide paths to it.

A configuration might look something like this:

	runhaskell Setup.hs configure \
		--extra-include-dirs=$(YOUR_CXX_INCLUDE_PATH) \
		--extra-lib-dirs=$(YOUR_CXX_LIB_PATH) \
		--extra-include-dirs=$(YOUR_OMEGA_PATH)/basic/include \
		--extra-include-dirs=$(YOUR_OMEGA_PATH)/omega_lib/include \
		--extra-lib-dirs=$(YOUR_OMEGA_PATH)/omega_lib/obj

DOCUMENTATION
-------------

The C++ Omega library includes documentation of its exported interface.
You may wish to look there if the Haddock documentation for a set operation
or relation operation is lacking.