Exemplo n.º 1
0
 def bindings(cls, limit, expansions, deform, cache_only):
     return [
         PartialBindingSpec(OrbitClosure)(limit=limit,
                                          expansions=expansions,
                                          deform=deform,
                                          cache_only=cache_only)
     ]
Exemplo n.º 2
0
 def bindings(cls, endpoint, key, region, bucket):
     return [
         PartialBindingSpec(GraphQL)(endpoint=endpoint,
                                     key=key,
                                     bucket=bucket,
                                     region=region)
     ]
 def click(cache_only):
     return {
         "bindings": [
             PartialBindingSpec(BoshernitzanConjecture)(
                 cache_only=cache_only)
         ],
         "goals": [BoshernitzanConjecture],
     }
 def click(limit):
     return {
         "goals": [UndeterminedIntervalExchangeTransformation],
         "bindings": [
             PartialBindingSpec(UndeterminedIntervalExchangeTransformation)(
                 limit=limit)
         ],
     }
 def click(cache_only):
     return {
         "bindings": [
             PartialBindingSpec(CylinderPeriodicAsymptotics)(
                 cache_only=cache_only)
         ],
         "goals": [CylinderPeriodicAsymptotics],
     }
Exemplo n.º 6
0
 def click(limit, cache_only):
     return {
         "bindings": [
             PartialBindingSpec(CompletelyCylinderPeriodic)(
                 limit=limit, cache_only=cache_only)
         ],
         "goals": [CompletelyCylinderPeriodic],
     }
Exemplo n.º 7
0
 def click():
     return {
         "bindings": [
             PartialBindingSpec(
                 BoshernitzanConjectureOrientations,
                 name="saddle_connection_orientations",
             )()
         ]
     }
Exemplo n.º 8
0
    def click(angle, length):
        if length is None:
            if len(angle) == 3:
                length = "e-antic"
            else:
                length = "exact-real"

        return {
            "bindings": [
                PartialBindingSpec(Ngon, name="surface")(angles=angle,
                                                         length=length)
            ]
        }
Exemplo n.º 9
0
 def click(ignore):
     return {"bindings": [PartialBindingSpec(Report)(ignore=ignore)]}
Exemplo n.º 10
0
 def deform(self, deformation):
     return {"bindings": [PartialBindingSpec(Report)(ignore=self._ignore)]}
Exemplo n.º 11
0
 def click(limit):
     return {
         "bindings":
         [PartialBindingSpec(CylinderPeriodicDirection)(limit=limit)],
         "goals": [CylinderPeriodicDirection],
     }
Exemplo n.º 12
0
 def bindings(cls, endpoint, key, region):
     return [
         PartialBindingSpec(GraphQL, name="cache")(endpoint=endpoint,
                                                   key=key,
                                                   region=region)
     ]
Exemplo n.º 13
0
 def click(bound, limit):
     return {
         "bindings": [
             PartialBindingSpec(SaddleConnections)(bound=bound, limit=limit)
         ]
     }
Exemplo n.º 14
0
 def click(limit):
     return {
         "bindings": [PartialBindingSpec(FlowDecompositions)(limit=limit)],
     }