Newer
Older
B-ASIC Operation Module.
TODO: More info.
"""
Angus Lothian
committed
from abc import abstractmethod
from typing import List, Dict, Optional, Any, TYPE_CHECKING
Angus Lothian
committed
from b_asic.graph_component import GraphComponent
if TYPE_CHECKING:
from b_asic.port import InputPort, OutputPort
from b_asic.simulation import SimulationState
Angus Lothian
committed
class Operation(GraphComponent):
"""Get a list of all input ports."""
Angus Lothian
committed
raise NotImplementedError
"""Get a list of all output ports."""
Angus Lothian
committed
raise NotImplementedError
@abstractmethod
def input_count(self) -> int:
"""Get the number of input ports."""
Angus Lothian
committed
raise NotImplementedError
@abstractmethod
def output_count(self) -> int:
"""Get the number of output ports."""
Angus Lothian
committed
raise NotImplementedError
"""Get the input port at index i."""
Angus Lothian
committed
raise NotImplementedError
"""Get the output port at index i."""
Angus Lothian
committed
raise NotImplementedError
@abstractmethod
def params(self) -> Dict[str, Optional[Any]]:
"""Get a dictionary of all parameter values."""
Angus Lothian
committed
raise NotImplementedError
@abstractmethod
def param(self, name: str) -> Optional[Any]:
Returns None if the parameter is not defined.
"""
Angus Lothian
committed
raise NotImplementedError
@abstractmethod
def set_param(self, name: str, value: Any) -> None:
Angus Lothian
committed
raise NotImplementedError
def evaluate_outputs(self, state: "SimulationState") -> List[Number]:
"""Simulate the circuit until its iteration count matches that of the simulation state,
Angus Lothian
committed
raise NotImplementedError
"""Split the operation into multiple operations.
If splitting is not possible, this may return a list containing only the operation itself.
"""
Angus Lothian
committed
raise NotImplementedError

Jacob Wahlman
committed
Angus Lothian
committed
@property

Jacob Wahlman
committed
@abstractmethod
def neighbours(self) -> "List[Operation]":
"""Return all operations that are connected by signals to this operation.

Jacob Wahlman
committed
If no neighbours are found this returns an empty list
"""
Angus Lothian
committed
raise NotImplementedError