#! /usr/bin/env python
#
# exact - process an XML file that defines an EXACT operation:
#
#        1. a computational experiment
#        2. a computational analysis
#        3. an experimental study, containing one or more experiments or
#                analyses
#  _________________________________________________________________________
#
#  FAST: Python tools for software testing.
#  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
import os
from os.path import abspath, dirname
sys.path.insert(0, dirname(dirname(abspath(__file__))))
sys.path.append(".")
currdir = dirname(abspath(__file__))
fast_path = dirname(currdir)
pyutilib_path = dirname(fast_path)+os.sep+"pyutilib"
sys.path.append(fast_path)
sys.path.append(pyutilib_path)
sys.path.append(abspath(os.getcwd()))


import fast.exact.main_script

fast.exact.main_script.main(sys.argv)

