10 lines
333 B
Python
10 lines
333 B
Python
"""Toy Habitat Module Adapter (placeholder for MVP wiring)."""
|
|
|
|
class HabitatModuleAdapter:
|
|
def __init__(self, adapter_id: str = "habitat_module"):
|
|
self.adapter_id = adapter_id
|
|
|
|
def to_local_problem(self, data):
|
|
# Placeholder: would map habitat domain data to a LocalProblem
|
|
raise NotImplementedError
|