Skip to content
Snippets Groups Projects
simulation.py 620 B
Newer Older
  • Learn to ignore specific revisions
  • """@package docstring
    
    B-ASIC Simulation Module.
    TODO: More info.
    """
    
    from numbers import Number
    
    from typing import List
    
    class OperationState:
    
    Jacob Wahlman's avatar
    Jacob Wahlman committed
        """Simulation state of an operation.
        TODO: More info.
        """
    
    Jacob Wahlman's avatar
    Jacob Wahlman committed
        output_values: List[Number]
        iteration: int
    
    Jacob Wahlman's avatar
    Jacob Wahlman committed
        def __init__(self):
            self.output_values = []
            self.iteration = 0
    
    class SimulationState:
    
    Jacob Wahlman's avatar
    Jacob Wahlman committed
        """Simulation state.
        TODO: More info.
        """
    
    Jacob Wahlman's avatar
    Jacob Wahlman committed
        # operation_states: Dict[OperationId, OperationState]
        iteration: int
    
    Jacob Wahlman's avatar
    Jacob Wahlman committed
        def __init__(self):
            self.operation_states = {}
            self.iteration = 0
    
    Jacob Wahlman's avatar
    Jacob Wahlman committed
        # TODO: More stuff.