Skip to main content
Glama

mcp-solver

MIT License
133
  • Linux
  • Apple
solution.py934 B
""" Solution module for convenience imports. This module simplifies imports by re-exporting the export_maxsat_solution function from the maxsat.solution module, making it available with a simpler import path. """ # Re-export the export_maxsat_solution function from the maxsat.solution module # This allows users to import it directly with "from solution import export_maxsat_solution" try: from .maxsat.solution import export_maxsat_solution except ImportError: # Define a placeholder function in case the import fails def export_maxsat_solution(*args, **kwargs): """ Placeholder function when the real implementation is not available. This should never be called in normal operation. """ raise NotImplementedError( "export_maxsat_solution is not available. " "This might indicate that the MaxSAT mode is not properly installed or initialized." )

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/szeider/mcp-solver'

If you have feedback or need assistance with the MCP directory API, please join our Discord server