# ____________________________________________________________________________________
#
# 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.
# ____________________________________________________________________________________
"""
Management of Pyomo commands
"""
import logging
logger = logging.getLogger('pyomo.common')
registry = {}
#
# Decorate functions that are Pyomo commands
#
[docs]
def pyomo_command(name=None, doc=None):
#
def wrap(fn):
if name is None: # pragma:nocover
logger.error("Error applying decorator. No command name!")
return
if doc is None: # pragma:nocover
logger.error("Error applying decorator. No command documentation!")
return
#
global registry
registry[name] = doc
return fn
#
return wrap
[docs]
def get_pyomo_commands(): # pragma:nocover
return registry