#! /usr/bin/env python
#
# sucasa: A script that generates a custom IP solvers that integrates
#           information from an algebraic model
#
#  _________________________________________________________________________
#
#  Coopr: A COmmon Optimization Python Repository
#  Copyright (c) 2008 Sandia Corporation.
#  This software is distributed under the BSD License.
#  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
#  the U.S. Government retains certain rights in this software.
#  For more information, see the FAST README.txt file.
#  _________________________________________________________________________

import sys
if sys.version_info[0:2] < (2,4):
   print ""
   print "ERROR: Pyomo requires Python 2.4 or newer"
   sys.exit(1)
from os.path import abspath, dirname
sys.path.insert(0, dirname(dirname(abspath(__file__))))
sys.path.append(".")

import coopr.sucasa.main_script

coopr.sucasa.main_script.run()

