This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Proposed sketch with dataclasses, properties, and SerializationContext refinements | |
| import threading | |
| from dataclasses import dataclass, field | |
| from typing import Optional, Dict, Any, List, ClassVar | |
| from pylabrobot.resources.coordinate import Coordinate | |
| from pylabrobot.serializer import serialize as PLR_serialize | |
| from pylabrobot.resources.utils import split_identifier, label_to_row_index, row_index_to_label | |
| # --- Serialization Context Infrastructure --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <vector> | |
| #include <iostream> | |
| #include <algorithm> | |
| #include <cassert> | |
| #include <units/dimensions/temperature.h> | |
| #include <units/dimensions/time.h> | |