qaekwy.solution

This module provides the Solution class for representing a solution to a model.

Solution

A Solution object is a dictionary-like object that holds the values of the variables in a solution. You can access the values of the variables as attributes of the object.

Example

# Assuming 'sol' is a Solution object
print(f"The value of x is {sol.x}")
print(f"The value of y is {sol.y}")