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

Method conclusion_name_args

problem.py:449–455  ·  view source on GitHub ↗
(
      self, mapping: dict[str, gm.Point]
  )

Source from the content-addressed store, hash-verified

447 return f'{premise_txt} => {conclusion_txt}'
448
449 def conclusion_name_args(
450 self, mapping: dict[str, gm.Point]
451 ) -> tuple[str, list[gm.Point]]:
452 mapping = {arg: p for arg, p in mapping.items() if isinstance(arg, str)}
453 c = self.conclusion[0]
454 args = [mapping[a] for a in c.args]
455 return c.name, args
456
457
458def why_eqratio(

Callers 1

bfs_one_levelFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected