def __init__(self, A, f): r""" See ``Conic`` for full documentation. EXAMPLES :: sage: Conic([GF(3)(1), 1, 1]) Projective Conic Curve over Finite Field of size 3 defined by x^2 + y^2 + z^2 """ ProjectiveConic_field.__init__(self, A, f)
def __init__(self, A, f): r""" See ``Conic`` for full documentation. EXAMPLES :: sage: Conic([1, 1, 1]) Projective Conic Curve over Rational Field defined by x^2 + y^2 + z^2 """ ProjectiveConic_field.__init__(self, A, f) # a single prime such that self has no point over the completion self._local_obstruction = None # all finite primes such that self has no point over the completion self._finite_obstructions = None # all infinite primes such that self has no point over the completion self._infinite_obstructions = None