Source code for pyomo.contrib.ampl_function_demo.build

# ____________________________________________________________________________________
#
# Pyomo: Python Optimization Modeling Objects
# Copyright (c) 2008-2026 National Technology and Engineering Solutions of Sandia, LLC
# Under the terms of Contract DE-NA0003525 with National Technology and Engineering
# Solutions of Sandia, LLC, the U.S. Government retains certain rights in this
# software.  This software is distributed under the 3-clause BSD License.
# ____________________________________________________________________________________

import sys
from pyomo.common.cmake_builder import build_cmake_project


[docs] def build_ampl_function_demo(user_args=[], parallel=None): return build_cmake_project( targets=['src'], package_name='asl_external_demo', description='AMPL External function demo library', user_args=['-DBUILD_AMPLASL_IF_NEEDED=ON'] + user_args, parallel=parallel, )
[docs] class AMPLFunctionDemoBuilder: def __call__(self, parallel): return build_ampl_function_demo(parallel=parallel)
if __name__ == "__main__": build_ampl_function_demo(sys.argv[1:])