>>> budget_custom = BudgetSet(
... budget_membership_mat=[[1, 0, 1], [0, 1, 0]],
... rhs_vec=[1, 1],
... origin=[2, 2, 2],
... )
>>> budget_custom.budget_membership_mat
array([[1, 0, 1],
[0, 1, 0]])
>>> budget_custom.budget_rhs_vec
array([1, 1])
>>> budget_custom.origin
array([2, 2, 2])