module Molinillo::Delegates::ResolutionState
def activated
def activated current_state = state || Molinillo::ResolutionState.empty current_state.activated end
def conflicts
def conflicts current_state = state || Molinillo::ResolutionState.empty current_state.conflicts end
def depth
def depth current_state = state || Molinillo::ResolutionState.empty current_state.depth end
def name
def name current_state = state || Molinillo::ResolutionState.empty current_state.name end
def possibilities
def possibilities current_state = state || Molinillo::ResolutionState.empty current_state.possibilities end
def requirement
def requirement current_state = state || Molinillo::ResolutionState.empty current_state.requirement end
def requirements
def requirements current_state = state || Molinillo::ResolutionState.empty current_state.requirements end