MCPcopy Create free account
hub / github.com/google-deepmind/alphageometry / __init__

Method __init__

problem.py:185–188  ·  view source on GitHub ↗
(self, url: str, clauses: list[Clause], goal: Construction)

Source from the content-addressed store, hash-verified

183 return {p.url: p for p in data}
184
185 def __init__(self, url: str, clauses: list[Clause], goal: Construction):
186 self.url = url
187 self.clauses = clauses
188 self.goal = goal
189
190 def copy(self) -> Problem:
191 return Problem(self.url, list(self.clauses), self.goal)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected