Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

UHW cohomology pro Ondru

Project: Dissertation
Views: 102

Helper functions


... mainly for producing LaTeX

def setup(CT, index_set): W = WeylGroup(CT) AS = W.domain() FW = AS.fundamental_weights() vFW = FW.map(lambda v: v.to_vector()) RP = AS.root_poset(facade=True) nonparabolic_roots = [x.to_ambient() for x in AS.root_system.root_lattice().positive_roots_nonparabolic(index_set=index_set)] nRP = RP.subposet(nonparabolic_roots) rho = AS.rho() return W, AS, FW, vFW, rho, nRP def inject_positive_integer_variables(names, n=1): """ If names is a string (e.g. "A") this function injects into the workspace n variables named A till An. Otherwise it is assumed that names is a list of variables that will be injected. They are assumed to take only nonnegative integral values. """ def inject_name(name, n): for i in range(n): if n != 1: var(name + str(i+1), "integer") eval("assume(%s%d >= 0)" %(name, i+1)) else: var(name, "integer") eval("assume(%s >= 0)" %name) if isinstance(names, basestring): inject_name(names, n) else: for name in names: inject_name(name, n) def setup_cone(cone_str): forget() print("Initial assumptions:") print(assumptions()) print("Cone: %s with assumptions:" % cone_str) print(assumptions()) exec cone_str in globals(), locals() class RootWithScalarProduct: """ Use this to relabel graphs of positive roots with scalar product with given weight v. """ def __init__(self, r, v): self.root = r self.scalarproduct = v.dot_product(r.to_vector()) def __latex__(self): return latex(self.scalarproduct) def __str__(self): return str(self.scalarproduct) def latex_poset_scalar_product(poset, v, only_nonnegative=True): """ Returns LaTeX code of poset of roots whose nodes were labeled by inner product of those roots with give weight v. """ p = poset.relabel(lambda r: RootWithScalarProduct(r, v)) if only_nonnegative: p = p.subposet([x for x in p if not(x.scalarproduct < 0)]) return str(latex(p)).replace("\\texttt", "").replace("\\text", "").replace("*", "") def fix_basis_latex(obj): """ Basis of Ambient spaces are indexed by e_0, ..., e_{n-1} instead of conventional \epsilon_1, ..., \epsilon_n. This functions returns string with fixed LaTeX source. You can render its output in notebook by calling latex.eval(...) """ import re def shift_number(matchobj): return "e_{%d}" % (int(matchobj.group(1)) + 1) index_re = re.compile("e_{(\d+)}") return index_re.sub(shift_number, str(latex(obj))).replace("e_{", "\epsilon_{")

Functions that calculate cohomology of unitarizable modules via Enright's formula

def WG_action(w, v): """ Action of weyl group element w on vector v. Workaround for subgroups not containing elements of the supergroup. """ AS = v.parent() return AS.from_vector(w.matrix()*v.to_vector()) def get_length_function(positive_roots): positive_roots = set(positive_roots) @cached_function def l(w): return len([a for a in positive_roots if WG_action(w.inverse(), -a) in positive_roots]) return l def get_generating_roots(weight, index_set): """ Returns a list of roots that generate the reflection subgroup which governs cohomology of unitarizable hihgest weight modules. First part of Enright's formula from his paper on u-cohomology. """ AS = weight.parent() # the ambient space rho = AS.rho() Psi = [r for r in AS.positive_roots() if r.scalar(rho + weight) == 0] if AS.cartan_type()[0] in "BCG": long_root = any(not(x.is_short_root()) for x in Psi) else: long_root = False def test_root(r): n = r.associated_coroot().scalar(weight + rho) # TODO check coroot calculations if long_root: short = r.is_short_root() else: short = True #print r, long_root, short return n.is_integer() and n > 0 and short nonparabolic_roots = [x.to_ambient() for x in AS.root_system.root_lattice().positive_roots_nonparabolic(index_set=index_set)] parabolic_roots = [x.to_ambient() for x in AS.root_system.root_lattice().positive_roots_parabolic(index_set=index_set)] #print("Nonparabolic roots: %s" % sorted(nonparabolic_roots)) Phi = [r for r in nonparabolic_roots if test_root(r) and all(r.scalar(s) == 0 for s in Psi)] return Phi, Psi, parabolic_roots, nonparabolic_roots def generate_subgroup(generators): """ Keep multiplying and taking inverses as long as new elements are constructed. Unfortunately, this routine takes too much time in practice. """ new = set(a*b for (a,b) in cartesian_product([generators, generators])).union(set(g.inverse() for g in generators)) if new == generators: return new else: return generate_subgroup(new) def DyerN(w): W = w.parent() return [t for t in W.reflections() if (t*w).length() < w.length()] def DyerCoxeterGenerators(H): return [w for w in H if set(DyerN(w)) == set([w])] def get_subsystem_data(weight, index_set): AS = weight.parent() W = AS.weyl_group() generating_roots, Psi, parabolic_roots, nonparabolic_roots = get_generating_roots(weight, index_set) reflections = W.reflections() generators = set(reflections[r] for r in generating_roots) #W_lambda = list(generate_subgroup(generators)) # subgroup generates H as a matrix group and we lose all the WeylGroupElement methods # too slow #W_lambda = [W.element_class(W, h) for h in W.subgroup(generators)] # too slow W_lambda = W.subgroup(generators) W_lambda_reflections = [] for x in W_lambda: g = W.element_class(W, x) if g in reflections: W_lambda_reflections.append(g) # calculate Coxeter generators of the reflection subgroup # see [Deodhar] or [Dyer] for proof def DyerCoxeterGenerators(H_reflections): # optimized version #H_reflections = [W.element_class(W, x) for x in reflections if x in H] # WARNING switching H and reflections leads to empty set! # H_reflections = [W.element_class(W, x) for x in H if W.element_class(W, x) in reflections] # the previous stopped working in Sage 7.6 # refactored shortly thereafter to assume that we have only reflections at input W_length = get_length_function(AS.positive_roots()) def DyerN(w): w = W.element_class(W, w) return set(t for t in H_reflections if W_length(t*w) < W_length(w)) return [w for w in H_reflections if DyerN(w) == set([w])] coxeter_generators = DyerCoxeterGenerators(W_lambda_reflections) lambda_positive_roots = [r for r in reflections.keys() if reflections[r] in W_lambda_reflections] lambda_simple_roots = [r for r in reflections.keys() if reflections[r] in coxeter_generators] lambda_parabolic_roots = [r for r in lambda_positive_roots if r in parabolic_roots] lambda_nonparabolic_roots = [r for r in lambda_positive_roots if r in nonparabolic_roots] # decompose coset representative according to their length from collections import defaultdict def is_dominant(v, positive_roots): return all(v.scalar(r) > 0 for r in positive_roots) lambda_W_c = defaultdict(list) rho = AS.rho() lambda_length = get_length_function(lambda_positive_roots) for w in W_lambda: if is_dominant(WG_action(w, rho), lambda_parabolic_roots): lambda_W_c[lambda_length(w)].append(w) return Psi, generating_roots, lambda_simple_roots, lambda_positive_roots, lambda_parabolic_roots, lambda_nonparabolic_roots, W_lambda, lambda_W_c def examine(weight, index_set, cone=None): Psi, generating_roots, lambda_simple_roots, lambda_positive_roots, lambda_parabolic_roots, lambda_nonparabolic_roots, H, lambda_W_c = get_subsystem_data(weight, index_set) print("Weight: %s" % weight) print("Singular roots: %s" % sorted(Psi)) print("Set of generating roots: %s" % sorted(generating_roots)) print("Set of generated roots: %s" % sorted(lambda_positive_roots)) print("Simple roots: %s" % sorted(lambda_simple_roots)) print("Scalar products of pairs of distinct simple roots: %s" % set(u.scalar(v) for (u,v) in cartesian_product([lambda_simple_roots, lambda_simple_roots]) if u != v)) if len(lambda_simple_roots) > 1: CM = CartanMatrix([[Integer(2*ri.scalar(rj)/ri.scalar(ri)) for rj in lambda_simple_roots] for ri in lambda_simple_roots]) print("Cartan matrix:\n%s" % CM) latex.eval(fix_basis_latex(latex(DynkinDiagram(CM, lambda_simple_roots)))) print("Noncompact lambda-roots: %s" % lambda_nonparabolic_roots) AS = weight.parent() if cone is not None: v = weight.to_vector() + cone else: v = weight.to_vector() print("Cone: %s" % cone) nonparabolic_roots = [x.to_ambient() for x in AS.root_system.root_lattice().positive_roots_nonparabolic(index_set=index_set)] nRP = AS.root_poset(facade=True).subposet(nonparabolic_roots) print("Scalar products of the weight in the cone with noncompact roots:") latex.eval(latex_poset_scalar_product(nRP, v))

Explicit calculations

def unitarizable_cohomology_An(p, q, pp, qq, l): n = p + q index_set = tuple([x for x in range(1, n) if x != p]) print("Levi roots: %s" % str(index_set)) CT = ["A", n - 1] W, AS, FW, vFW, rho, nRP = setup(CT, index_set) forget() print("Initial assumptions:") print(assumptions()) inject_positive_integer_variables("a", n-1) cone_str = "Ca = " + " + ".join("a{i}*(vFW[{i}] - vFW[{p}])".format(i=i, p=p) for i in range(pp, n-qq+1) if i != p) print("Cone: %s with assumptions:" % cone_str) print(assumptions()) exec cone_str in globals(), locals() v = FW[pp] + FW[n-qq] - (n + l + 1 - pp - qq)*FW[p] + rho print("Vertex: %s" % v) examine(v, index_set, Ca) p = 3 q = 3 pp = 2 # 1 <= pp <= p qq = 2 # 1 <= qq <= q # l = 1 # 1 <= l <= min(pp, qq) for l in range(1, min(pp, qq) + 1): print("Level of reduction: %d" % l) unitarizable_cohomology_An(p, q, pp, qq, l) print("\n" + "-"*80 + "\n")
Level of reduction: 1 Levi roots: (1, 2, 4, 5) Initial assumptions: [] Cone: Ca = a2*(vFW[2] - vFW[3]) + a4*(vFW[4] - vFW[3]) with assumptions: [a1 >= 0, a2 >= 0, a3 >= 0, a4 >= 0, a5 >= 0] Vertex: (3, 2, 0, 3, 1, 0) Weight: (3, 2, 0, 3, 1, 0) Singular roots: [] Set of generating roots: [(1, 0, 0, -1, 0, 0), (1, 0, 0, 0, -1, 0), (1, 0, 0, 0, 0, -1), (0, 1, 0, -1, 0, 0), (0, 1, 0, 0, -1, 0), (0, 1, 0, 0, 0, -1), (0, 0, 1, 0, -1, 0), (0, 0, 1, 0, 0, -1)] Set of generated roots: [(1, -1, 0, 0, 0, 0), (1, 0, -1, 0, 0, 0), (1, 0, 0, -1, 0, 0), (1, 0, 0, 0, -1, 0), (1, 0, 0, 0, 0, -1), (0, 1, -1, 0, 0, 0), (0, 1, 0, -1, 0, 0), (0, 1, 0, 0, -1, 0), (0, 1, 0, 0, 0, -1), (0, 0, 1, -1, 0, 0), (0, 0, 1, 0, -1, 0), (0, 0, 1, 0, 0, -1), (0, 0, 0, 1, -1, 0), (0, 0, 0, 1, 0, -1), (0, 0, 0, 0, 1, -1)] Simple roots: [(1, -1, 0, 0, 0, 0), (0, 1, -1, 0, 0, 0), (0, 0, 1, -1, 0, 0), (0, 0, 0, 1, -1, 0), (0, 0, 0, 0, 1, -1)] Scalar products of pairs of distinct simple roots: set([0, -1]) Cartan matrix: [ 2 -1 0 0 0] [-1 2 -1 0 0] [ 0 -1 2 -1 0] [ 0 0 -1 2 -1] [ 0 0 0 -1 2]
Noncompact lambda-roots: [(0, 0, 1, -1, 0, 0), (0, 1, 0, -1, 0, 0), (0, 0, 1, 0, -1, 0), (1, 0, 0, -1, 0, 0), (0, 0, 1, 0, 0, -1), (0, 1, 0, 0, -1, 0), (0, 1, 0, 0, 0, -1), (1, 0, 0, 0, -1, 0), (1, 0, 0, 0, 0, -1)] Cone: (0, 0, -a2, a4, 0, 0) Scalar products of the weight in the cone with noncompact roots:
-------------------------------------------------------------------------------- Level of reduction: 2 Levi roots: (1, 2, 4, 5) Initial assumptions: [] Cone: Ca = a2*(vFW[2] - vFW[3]) + a4*(vFW[4] - vFW[3]) with assumptions: [a1 >= 0, a2 >= 0, a3 >= 0, a4 >= 0, a5 >= 0] Vertex: (2, 1, -1, 3, 1, 0) Weight: (2, 1, -1, 3, 1, 0) Singular roots: [(0, 1, 0, -1, 0, 0), (0, 0, 1, 0, -1, 0)] Set of generating roots: [(1, 0, 0, 0, 0, -1)] Set of generated roots: [(1, 0, 0, 0, 0, -1)] Simple roots: [(1, 0, 0, 0, 0, -1)] Scalar products of pairs of distinct simple roots: set([]) Noncompact lambda-roots: [(1, 0, 0, 0, 0, -1)] Cone: (0, 0, -a2, a4, 0, 0) Scalar products of the weight in the cone with noncompact roots:
--------------------------------------------------------------------------------
%latex {\Huge $\mathrm{Sp}(n, \mathbb{R}) \sim C_n, n \geq 2$}
def unitarizable_cohomology_Cn(n, q, r, l): index_set = tuple([x for x in range(1, n)]) print("Levi roots: %s" % str(index_set)) CT = ["C", n] W, AS, FW, vFW, rho, nRP = setup(CT, index_set) inject_positive_integer_variables(["a%d" % i for i in range(r, n+1)]) cone_str = "Ca = " + " + ".join("a{i}*(vFW[{i}] - vFW[{p}])".format(i=i, p=n) for i in range(r, n)) setup_cone(cone_str) v = FW[q] + FW[r] - (2 + n - 1/2*(r + q - l + 1))*FW[n] + rho print("Vertex: %s" % v) examine(v, index_set, Ca) unitarizable_cohomology_Cn(4,3,2,1)
Levi roots: (1, 2, 3)
Error in lines 12-12 Traceback (most recent call last): File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_server.py", line 995, in execute exec compile(block+'\n', '', 'single') in namespace, locals File "", line 1, in <module> File "", line 8, in unitarizable_cohomology_Cn NameError: global name 'setup_cone' is not defined
def setup_SOstar(n): print("Levi roots: %s" % str(index_set)) CT = ["D", n] return setup(CT, index_set) def setup_so_cone(n, p): inject_positive_integer_variables(["a%d" % i for i in range(p, n)]) cone_str = "Ca = " + " + ".join("a{i}*(vFW[{i}] - 2*vFW[{n}])".format(i=i, n=n) for i in range(p, n-1)) if p < n-1: cone_str += " + " cone_str += "a{last}*(vFW[{last}] - vFW[{n}])".format(last=n-1,n=n) setup_cone(cone_str) def setup_su_cone(n, q): inject_positive_integer_variables(["a1"] + ["a%d" % i for i in range(q+1, n)]) cone_str = "Ca = a1*(vFW[1] - vFW[{n}])".format(n=n) if q < n-2: cone_str += " + " cone_str += " + ".join("a{i}*(vFW[{i}] - 2*vFW[{n}])".format(i=i, n=n) for i in range(q+1, n-1)) if q <= n-2: cone_str += " + a{last}*(vFW[{last}] - vFW[{n}])".format(last=n-1,n=n) setup_cone(cone_str) n = 6 index_set = tuple([x for x in range(1, n)]) W, AS, FW, vFW, rho, nRP = setup_SOstar(n) FW
Levi roots: (1, 2, 3, 4, 5) Finite family {1: (1, 0, 0, 0, 0, 0), 2: (1, 1, 0, 0, 0, 0), 3: (1, 1, 1, 0, 0, 0), 4: (1, 1, 1, 1, 0, 0), 5: (1/2, 1/2, 1/2, 1/2, 1/2, -1/2), 6: (1/2, 1/2, 1/2, 1/2, 1/2, 1/2)}
v = FW[2] - (2*n-2)*FW[n] v
(-4, -4, -5, -5, -5, -5)
examine(v, index_set)
Weight: (-4, -4, -5, -5, -5, -5) Singular roots: [] Set of generating roots: [(1, 1, 0, 0, 0, 0)] Set of generated roots: [(1, 1, 0, 0, 0, 0)] Simple roots: [(1, 1, 0, 0, 0, 0)] Scalar products of pairs of distinct simple roots: set([]) Noncompact lambda-roots: [(1, 1, 0, 0, 0, 0)] Cone: None Scalar products of the weight in the cone with noncompact roots:
p = 3 l = 1 v = FW[p] - 2*(n-p+l)*FW[n] v
(-3, -3, -3, -4, -4, -4)
setup_so_cone(n, p)
Initial assumptions: [] Cone: Ca = a3*(vFW[3] - 2*vFW[6]) + a4*(vFW[4] - 2*vFW[6]) + a5*(vFW[5] - vFW[6]) with assumptions: []
Ca = a3*(vFW[3] - 2*vFW[5]) + a4*(vFW[4] - vFW[5])
examine(v, index_set, Ca)
Weight: (-3, -3, -3, -4, -4, -4) Singular roots: [(1, 0, 0, 1, 0, 0)] Set of generating roots: [(0, 1, 1, 0, 0, 0)] Set of generated roots: [(0, 1, 1, 0, 0, 0)] Simple roots: [(0, 1, 1, 0, 0, 0)] Scalar products of pairs of distinct simple roots: set([]) Noncompact lambda-roots: [(0, 1, 1, 0, 0, 0)] Cone: (1/2*a4, 1/2*a4, 1/2*a4, -a3 + 1/2*a4, -a3 - 1/2*a4, a3 + 1/2*a4) Scalar products of the weight in the cone with noncompact roots:
a3*a4
v = FW[n-1] - (1+2*l)*FW[n] v
(-1, -1, -1, -2)
setup_so_cone(n, n-1)
Initial assumptions: [] Cone: Ca = a9*(vFW[9] - vFW[10]) with assumptions: [a9 >= 0]
v = - (2*l-1)*FW[n] v
(-1/2, -1/2, -1/2, -1/2)
q = 1 v = FW[1] + FW[q+1] - (2*n-q)*FW[n] v
(-15/2, -17/2, -19/2, -19/2, -19/2, -19/2, -19/2, -19/2, -19/2, -19/2)
setup_su_cone(n, q)
Initial assumptions: [] Cone: Ca = a1*(vFW[1] - vFW[10]) + a2*(vFW[2] - 2*vFW[10]) + a3*(vFW[3] - 2*vFW[10]) + a4*(vFW[4] - 2*vFW[10]) + a5*(vFW[5] - 2*vFW[10]) + a6*(vFW[6] - 2*vFW[10]) + a7*(vFW[7] - 2*vFW[10]) + a8*(vFW[8] - 2*vFW[10]) + a9*(vFW[9] - vFW[10]) with assumptions: []
v = FW[1] + FW[n-1] - (n+1)*FW[n] v
(-4, -5, -5, -5, -5, -5, -5, -5, -5, -6)
setup_su_cone(n, n-2)
Initial assumptions: [] Cone: Ca = a1*(vFW[1] - vFW[10]) + a9*(vFW[9] - vFW[10]) with assumptions: []
v = FW[1] - (n-1)*FW[n] v
(-7/2, -9/2, -9/2, -9/2, -9/2, -9/2, -9/2, -9/2, -9/2, -9/2)
setup_su_cone(n, n-1)
Initial assumptions: [] Cone: Ca = a1*(vFW[1] - vFW[10]) with assumptions: []
n = 6 CT = ["D", n] index_set = tuple(range(2,n+1)) ##### W = WeylGroup(CT) AS = W.domain() FW = AS.fundamental_weights() if n <= 6: _ = latex.eval(fix_basis_latex((AS.root_poset())))
for p in range(1, n-2): print("p = %d" % p) v = -(2*n - p -1)*FW[1] + FW[p+1] examine(v, index_set) print
p = 1 Weight: (-9, 1, 0, 0, 0, 0) Singular roots: [] Set of generating roots: [(1, 1, 0, 0, 0, 0)] Set of generated roots: [(1, 1, 0, 0, 0, 0)] Simple roots: [(1, 1, 0, 0, 0, 0)] Scalar products of pairs of distinct simple roots: set([]) Noncompact lambda-roots: [(1, 1, 0, 0, 0, 0)] Cone: None Scalar products of the weight in the cone with noncompact roots:
p = 2 Weight: (-8, 1, 1, 0, 0, 0) Singular roots: [] Set of generating roots: [(1, 1, 0, 0, 0, 0), (1, 0, 1, 0, 0, 0)] Set of generated roots: [(1, 1, 0, 0, 0, 0), (1, 0, 1, 0, 0, 0), (0, 1, -1, 0, 0, 0)] Simple roots: [(1, 0, 1, 0, 0, 0), (0, 1, -1, 0, 0, 0)] Scalar products of pairs of distinct simple roots: set([-1]) Cartan matrix: [ 2 -1] [-1 2]
Noncompact lambda-roots: [(1, 0, 1, 0, 0, 0), (1, 1, 0, 0, 0, 0)] Cone: None Scalar products of the weight in the cone with noncompact roots:
p = 3 Weight: (-7, 1, 1, 1, 0, 0) Singular roots: [] Set of generating roots: [(1, 1, 0, 0, 0, 0), (1, 0, 1, 0, 0, 0), (1, 0, 0, 1, 0, 0)] Set of generated roots: [(1, 1, 0, 0, 0, 0), (1, 0, 1, 0, 0, 0), (1, 0, 0, 1, 0, 0), (0, 1, -1, 0, 0, 0), (0, 1, 0, -1, 0, 0), (0, 0, 1, -1, 0, 0)] Simple roots: [(1, 0, 0, 1, 0, 0), (0, 1, -1, 0, 0, 0), (0, 0, 1, -1, 0, 0)] Scalar products of pairs of distinct simple roots: set([0, -1]) Cartan matrix: [ 2 -1 0] [-1 2 -1] [ 0 -1 2]
Noncompact lambda-roots: [(1, 0, 0, 1, 0, 0), (1, 0, 1, 0, 0, 0), (1, 1, 0, 0, 0, 0)] Cone: None Scalar products of the weight in the cone with noncompact roots:
v = -(n+1)*FW[1] + FW[n-1]+ FW[n] examine(v, index_set)
Weight: (-6, 1, 1, 1, 1, 0) Singular roots: [] Set of generating roots: [(1, 1, 0, 0, 0, 0), (1, 0, 1, 0, 0, 0), (1, 0, 0, 1, 0, 0), (1, 0, 0, 0, 1, 0)] Set of generated roots: [(1, 1, 0, 0, 0, 0), (1, 0, 1, 0, 0, 0), (1, 0, 0, 1, 0, 0), (1, 0, 0, 0, 1, 0), (0, 1, -1, 0, 0, 0), (0, 1, 0, -1, 0, 0), (0, 1, 0, 0, -1, 0), (0, 0, 1, -1, 0, 0), (0, 0, 1, 0, -1, 0), (0, 0, 0, 1, -1, 0)] Simple roots: [(1, 0, 0, 0, 1, 0), (0, 1, -1, 0, 0, 0), (0, 0, 1, -1, 0, 0), (0, 0, 0, 1, -1, 0)] Scalar products of pairs of distinct simple roots: set([0, -1]) Cartan matrix: [ 2 -1 0 0] [-1 2 -1 0] [ 0 -1 2 -1] [ 0 0 -1 2]
w = -(n-1)*FW[1] + FW[n] examine(w, index_set)
Weight: (-9/2, 1/2, 1/2, 1/2, 1/2, 1/2) Singular roots: [(1, 0, 0, 0, 0, -1)] Set of generating roots: [(1, 0, 0, 0, 0, 1)] Set of generated roots: [(1, 0, 0, 0, 0, 1)] Simple roots: [(1, 0, 0, 0, 0, 1)] Scalar products of pairs of distinct simple roots: set([])
v = -(n-2)*FW[1] examine(v, index_set)
Weight: (-4, 0, 0, 0, 0, 0) Singular roots: [(1, 0, 0, 0, -1, 0)] Set of generating roots: [(1, 0, 0, 0, 1, 0)] Set of generated roots: [(1, 0, 0, 0, 1, 0)] Simple roots: [(1, 0, 0, 0, 1, 0)] Scalar products of pairs of distinct simple roots: set([])
v = 0*FW[1] if n < 8: _, _, _, lambda_positive_roots, _, _, _, _ = get_subsystem_data(v, index_set) print("Generated root system is the whole D%s: %s" % (n, set(lambda_positive_roots) == set(AS.positive_roots()))) else: print("Generating system is too big.")
Generated root system is the whole D6: True
v = -(n-1)*FW[1] + FW[n-1] examine(v, index_set)
Weight: (-9/2, 1/2, 1/2, 1/2, 1/2, -1/2) Singular roots: [(1, 0, 0, 0, 0, 1)] Set of generating roots: [(1, 0, 0, 0, 0, -1)] Set of generated roots: [(1, 0, 0, 0, 0, -1)] Simple roots: [(1, 0, 0, 0, 0, -1)] Scalar products of pairs of distinct simple roots: set([])
n = 6 index_set = tuple(range(2,7)) ##### W = WeylGroup("E%d" % n) AS = W.domain() FW = AS.fundamental_weights() AS.dynkin_diagram()
O 2 | | O---O---O---O---O 1 3 4 5 6 E6
a = 1 b = 1 c = 0 v = a*FW[3] + b*FW[5] + c*FW[6] + (-2*a-2*b-c-8)*FW[1] examine(v, index_set)
Reps the same? True Weight: (-1/2, 1/2, 1/2, 3/2, 3/2, 13/2, 13/2, -13/2) Singular roots: [] Set of generating roots: [(-1/2, -1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, 1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2)] Set of generated roots: [(-1/2, -1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, 1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1, 1, 0, 0, 0, 0, 0, 0), (1, 0, 1, 0, 0, 0, 0, 0), (0, -1, 1, 0, 0, 0, 0, 0)] Simple roots: [(-1/2, 1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1, 1, 0, 0, 0, 0, 0, 0), (0, -1, 1, 0, 0, 0, 0, 0)] Scalar products of pairs of distinct simple roots: set([0, -1]) Cartan matrix: [ 2 -1 0] [-1 2 -1] [ 0 -1 2]
Noncompact lambda-roots: [(-1/2, 1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, -1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2)]
a = 4 v = a*FW[6] + (-a-4)*FW[1] examine(v, index_set)
Weight: (0, 0, 0, 0, 4, 4, 4, -4) Singular roots: [] Set of generating roots: [(-1/2, -1/2, -1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, -1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, 1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, 1/2, 1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, -1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1/2, -1/2, 1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, -1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2)] Set of generated roots: [(-1, 1, 0, 0, 0, 0, 0, 0), (-1, 0, 1, 0, 0, 0, 0, 0), (-1, 0, 0, 1, 0, 0, 0, 0), (-1/2, -1/2, -1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, -1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, 1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, 1/2, 1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, -1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1/2, -1/2, 1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, -1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1, 1, 0, 0, 0, 0, 0, 0), (1, 0, 1, 0, 0, 0, 0, 0), (1, 0, 0, 1, 0, 0, 0, 0), (0, -1, 1, 0, 0, 0, 0, 0), (0, -1, 0, 1, 0, 0, 0, 0), (0, 1, 1, 0, 0, 0, 0, 0), (0, 1, 0, 1, 0, 0, 0, 0), (0, 0, -1, 1, 0, 0, 0, 0), (0, 0, 1, 1, 0, 0, 0, 0)] Simple roots: [(-1, 1, 0, 0, 0, 0, 0, 0), (-1/2, -1/2, -1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1, 1, 0, 0, 0, 0, 0, 0), (0, -1, 1, 0, 0, 0, 0, 0), (0, 0, -1, 1, 0, 0, 0, 0)] Scalar products of pairs of distinct simple roots: set([0, -1]) Cartan matrix: [ 2 0 -1 0 -1] [ 0 2 -1 0 0] [-1 -1 2 -1 0] [ 0 0 -1 2 0] [-1 0 0 0 2]
Noncompact lambda-roots: [(-1/2, -1/2, -1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, -1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, -1/2, 1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, 1/2, 1/2, -1/2, 1/2, -1/2, -1/2, 1/2), (1/2, -1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, 1/2, -1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (-1/2, -1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2), (1/2, 1/2, 1/2, 1/2, 1/2, -1/2, -1/2, 1/2)]

Experiments

%latex {\Huge $\mathrm{E}_7$}
CT = "E7" W = WeylGroup(CT) AS = W.domain() FW = AS.fundamental_weights() RP = AS.root_poset(facade=True) nonparabolic_roots = [x.to_ambient() for x in AS.root_system.root_lattice().positive_roots_nonparabolic(index_set=(1,2,3,4,5,6))] print(len(nonparabolic_roots)) nRP = RP.subposet(nonparabolic_roots) nRP.plot()
27
view(nRP)
Error in lines 1-1 Traceback (most recent call last): File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_server.py", line 995, in execute exec compile(block+'\n', '', 'single') in namespace, locals File "", line 1, in <module> File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_salvus.py", line 2649, in show s = show0(objs, combine_all=True) File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_salvus.py", line 2610, in show0 b = show0(a) File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_salvus.py", line 2635, in show0 sage.misc.latex.latex.eval(s) File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_salvus.py", line 1467, in latex0 sage.misc.latex.Latex.eval(sage.misc.latex.latex, s, **kwds) File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/sage/misc/latex.py", line 1130, in eval os.path.join(orig_base, filename + ".png")) File "/projects/sage/sage-7.6/local/lib/python/shutil.py", line 119, in copy copyfile(src, dst) File "/projects/sage/sage-7.6/local/lib/python/shutil.py", line 82, in copyfile with open(src, 'rb') as fsrc: IOError: [Errno 2] No such file or directory: '/projects/d97ca4df-6ebd-46ab-b7fb-40461f0f84e0/.sage/temp/compute2-us/11056/dir_I69ERH/tmpFKZ9ex.png'
latex(nRP)
\begin{tikzpicture}[>=latex,line join=bevel,] %% \node (node_26) at (233.5bp,851.0bp) [draw,draw=none] {$-e_{6} + e_{7}$}; \node (node_24) at (140.5bp,7.0bp) [draw,draw=none] {$-e_{4} + e_{5}$}; \node (node_25) at (39.5bp,421.0bp) [draw,draw=none] {$e_{4} + e_{5}$}; \node (node_22) at (140.5bp,57.0bp) [draw,draw=none] {$-e_{3} + e_{5}$}; \node (node_23) at (111.5bp,367.0bp) [draw,draw=none] {$e_{3} + e_{5}$}; \node (node_20) at (140.5bp,107.0bp) [draw,draw=none] {$-e_{2} + e_{5}$}; \node (node_21) at (111.5bp,313.0bp) [draw,draw=none] {$e_{2} + e_{5}$}; \node (node_9) at (111.5bp,475.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} - \frac{1}{2}e_{1} - \frac{1}{2}e_{2} - \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_8) at (233.5bp,799.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} + \frac{1}{2}e_{1} + \frac{1}{2}e_{2} + \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_7) at (422.5bp,421.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} + \frac{1}{2}e_{1} + \frac{1}{2}e_{2} - \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_6) at (350.5bp,475.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} + \frac{1}{2}e_{1} - \frac{1}{2}e_{2} + \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_5) at (111.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} + \frac{1}{2}e_{1} - \frac{1}{2}e_{2} - \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_4) at (352.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} - \frac{1}{2}e_{1} + \frac{1}{2}e_{2} + \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_3) at (114.5bp,583.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} - \frac{1}{2}e_{1} + \frac{1}{2}e_{2} - \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_2) at (114.5bp,637.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} - \frac{1}{2}e_{1} - \frac{1}{2}e_{2} + \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_1) at (259.5bp,259.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} - \frac{1}{2}e_{1} - \frac{1}{2}e_{2} - \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_0) at (170.5bp,207.0bp) [draw,draw=none] {$-e_{0} + e_{5}$}; \node (node_19) at (111.5bp,259.0bp) [draw,draw=none] {$e_{1} + e_{5}$}; \node (node_18) at (140.5bp,157.0bp) [draw,draw=none] {$-e_{1} + e_{5}$}; \node (node_17) at (111.5bp,207.0bp) [draw,draw=none] {$e_{0} + e_{5}$}; \node (node_16) at (352.5bp,583.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} + \frac{1}{2}e_{1} + \frac{1}{2}e_{2} + \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_15) at (352.5bp,637.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} + \frac{1}{2}e_{1} + \frac{1}{2}e_{2} - \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_14) at (233.5bp,691.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} + \frac{1}{2}e_{1} - \frac{1}{2}e_{2} + \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_13) at (256.5bp,313.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} + \frac{1}{2}e_{1} - \frac{1}{2}e_{2} - \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_12) at (233.5bp,745.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} - \frac{1}{2}e_{1} + \frac{1}{2}e_{2} + \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_11) at (256.5bp,367.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} - \frac{1}{2}e_{1} + \frac{1}{2}e_{2} - \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_10) at (184.5bp,421.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} - \frac{1}{2}e_{1} - \frac{1}{2}e_{2} + \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \draw [black,->] (node_6) ..controls (351.08bp,490.95bp) and (351.46bp,500.97bp) .. (node_4); \draw [black,->] (node_15) ..controls (314.74bp,654.5bp) and (283.84bp,668.0bp) .. (node_14); \draw [black,->] (node_25) ..controls (58.839bp,435.97bp) and (77.748bp,449.62bp) .. (node_9); \draw [black,->] (node_7) ..controls (400.32bp,438.02bp) and (383.5bp,450.16bp) .. (node_6); \draw [black,->] (node_10) ..controls (161.91bp,438.09bp) and (144.63bp,450.4bp) .. (node_9); \draw [black,->] (node_11) ..controls (234.32bp,384.02bp) and (217.5bp,396.16bp) .. (node_10); \draw [black,->] (node_22) ..controls (140.5bp,70.707bp) and (140.5bp,80.976bp) .. (node_20); \draw [black,->] (node_10) ..controls (238.22bp,438.83bp) and (283.65bp,453.06bp) .. (node_6); \draw [black,->] (node_19) ..controls (151.91bp,274.49bp) and (194.86bp,289.89bp) .. (node_13); \draw [black,->] (node_11) ..controls (310.22bp,384.83bp) and (355.65bp,399.06bp) .. (node_7); \draw [black,->] (node_18) ..controls (148.67bp,171.07bp) and (155.59bp,182.14bp) .. (node_0); \draw [black,->] (node_3) ..controls (114.5bp,598.95bp) and (114.5bp,608.97bp) .. (node_2); \draw [black,->] (node_9) ..controls (111.5bp,490.95bp) and (111.5bp,500.97bp) .. (node_5); \draw [black,->] (node_5) ..controls (112.36bp,544.95bp) and (112.94bp,554.97bp) .. (node_3); \draw [black,->] (node_21) ..controls (151.91bp,328.49bp) and (194.86bp,343.89bp) .. (node_11); \draw [black,->] (node_21) ..controls (111.5bp,327.63bp) and (111.5bp,339.75bp) .. (node_23); \draw [black,->] (node_19) ..controls (111.5bp,273.63bp) and (111.5bp,285.75bp) .. (node_21); \draw [black,->] (node_17) ..controls (111.5bp,220.95bp) and (111.5bp,232.26bp) .. (node_19); \draw [black,->] (node_18) ..controls (132.6bp,171.07bp) and (125.91bp,182.14bp) .. (node_17); \draw [black,->] (node_24) ..controls (140.5bp,20.707bp) and (140.5bp,30.976bp) .. (node_22); \draw [black,->] (node_23) ..controls (91.483bp,382.46bp) and (70.843bp,397.36bp) .. (node_25); \draw [black,->] (node_23) ..controls (131.11bp,381.97bp) and (150.28bp,395.62bp) .. (node_10); \draw [black,->] (node_13) ..controls (256.5bp,328.95bp) and (256.5bp,338.97bp) .. (node_11); \draw [black,->] (node_16) ..controls (352.5bp,598.95bp) and (352.5bp,608.97bp) .. (node_15); \draw [black,->] (node_1) ..controls (258.64bp,274.95bp) and (258.06bp,284.97bp) .. (node_13); \draw [black,->] (node_0) ..controls (154.15bp,221.85bp) and (138.27bp,235.32bp) .. (node_19); \draw [black,->] (node_12) ..controls (233.5bp,760.95bp) and (233.5bp,770.97bp) .. (node_8); \draw [black,->] (node_8) ..controls (233.5bp,815.12bp) and (233.5bp,825.1bp) .. (node_26); \draw [black,->] (node_3) ..controls (192.75bp,601.1bp) and (260.63bp,615.93bp) .. (node_15); \draw [black,->] (node_0) ..controls (194.89bp,221.7bp) and (218.18bp,234.79bp) .. (node_1); \draw [black,->] (node_4) ..controls (274.25bp,547.1bp) and (206.37bp,561.93bp) .. (node_3); \draw [black,->] (node_2) ..controls (152.26bp,654.5bp) and (183.16bp,668.0bp) .. (node_14); \draw [black,->] (node_6) ..controls (271.93bp,493.1bp) and (203.76bp,507.93bp) .. (node_5); \draw [black,->] (node_4) ..controls (352.5bp,544.95bp) and (352.5bp,554.97bp) .. (node_16); \draw [black,->] (node_20) ..controls (140.5bp,120.71bp) and (140.5bp,130.98bp) .. (node_18); \draw [black,->] (node_14) ..controls (233.5bp,706.95bp) and (233.5bp,716.97bp) .. (node_12); % \end{tikzpicture}
%latex \begin{tikzpicture}[>=latex,line join=bevel,] %% \node (node_26) at (233.5bp,851.0bp) [draw,draw=none] {$-e_{6} + e_{7}$}; \node (node_24) at (140.5bp,7.0bp) [draw,draw=none] {$-e_{4} + e_{5}$}; \node (node_25) at (39.5bp,421.0bp) [draw,draw=none] {$e_{4} + e_{5}$}; \node (node_22) at (140.5bp,57.0bp) [draw,draw=none] {$-e_{3} + e_{5}$}; \node (node_23) at (111.5bp,367.0bp) [draw,draw=none] {$e_{3} + e_{5}$}; \node (node_20) at (140.5bp,107.0bp) [draw,draw=none] {$-e_{2} + e_{5}$}; \node (node_21) at (111.5bp,313.0bp) [draw,draw=none] {$e_{2} + e_{5}$}; \node (node_9) at (111.5bp,475.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} - \frac{1}{2}e_{1} - \frac{1}{2}e_{2} - \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_8) at (233.5bp,799.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} + \frac{1}{2}e_{1} + \frac{1}{2}e_{2} + \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_7) at (422.5bp,421.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} + \frac{1}{2}e_{1} + \frac{1}{2}e_{2} - \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_6) at (350.5bp,475.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} + \frac{1}{2}e_{1} - \frac{1}{2}e_{2} + \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_5) at (111.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} + \frac{1}{2}e_{1} - \frac{1}{2}e_{2} - \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_4) at (352.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} - \frac{1}{2}e_{1} + \frac{1}{2}e_{2} + \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_3) at (114.5bp,583.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} - \frac{1}{2}e_{1} + \frac{1}{2}e_{2} - \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_2) at (114.5bp,637.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} - \frac{1}{2}e_{1} - \frac{1}{2}e_{2} + \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_1) at (259.5bp,259.0bp) [draw,draw=none] {$-\frac{1}{2}e_{0} - \frac{1}{2}e_{1} - \frac{1}{2}e_{2} - \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_0) at (170.5bp,207.0bp) [draw,draw=none] {$-e_{0} + e_{5}$}; \node (node_19) at (111.5bp,259.0bp) [draw,draw=none] {$e_{1} + e_{5}$}; \node (node_18) at (140.5bp,157.0bp) [draw,draw=none] {$-e_{1} + e_{5}$}; \node (node_17) at (111.5bp,207.0bp) [draw,draw=none] {$e_{0} + e_{5}$}; \node (node_16) at (352.5bp,583.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} + \frac{1}{2}e_{1} + \frac{1}{2}e_{2} + \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_15) at (352.5bp,637.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} + \frac{1}{2}e_{1} + \frac{1}{2}e_{2} - \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_14) at (233.5bp,691.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} + \frac{1}{2}e_{1} - \frac{1}{2}e_{2} + \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_13) at (256.5bp,313.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} + \frac{1}{2}e_{1} - \frac{1}{2}e_{2} - \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_12) at (233.5bp,745.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} - \frac{1}{2}e_{1} + \frac{1}{2}e_{2} + \frac{1}{2}e_{3} + \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_11) at (256.5bp,367.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} - \frac{1}{2}e_{1} + \frac{1}{2}e_{2} - \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \node (node_10) at (184.5bp,421.0bp) [draw,draw=none] {$\frac{1}{2}e_{0} - \frac{1}{2}e_{1} - \frac{1}{2}e_{2} + \frac{1}{2}e_{3} - \frac{1}{2}e_{4} + \frac{1}{2}e_{5} - \frac{1}{2}e_{6} + \frac{1}{2}e_{7}$}; \draw [black,->] (node_6) ..controls (351.08bp,490.95bp) and (351.46bp,500.97bp) .. (node_4); \draw [black,->] (node_15) ..controls (314.74bp,654.5bp) and (283.84bp,668.0bp) .. (node_14); \draw [black,->] (node_25) ..controls (58.839bp,435.97bp) and (77.748bp,449.62bp) .. (node_9); \draw [black,->] (node_7) ..controls (400.32bp,438.02bp) and (383.5bp,450.16bp) .. (node_6); \draw [black,->] (node_10) ..controls (161.91bp,438.09bp) and (144.63bp,450.4bp) .. (node_9); \draw [black,->] (node_11) ..controls (234.32bp,384.02bp) and (217.5bp,396.16bp) .. (node_10); \draw [black,->] (node_22) ..controls (140.5bp,70.707bp) and (140.5bp,80.976bp) .. (node_20); \draw [black,->] (node_10) ..controls (238.22bp,438.83bp) and (283.65bp,453.06bp) .. (node_6); \draw [black,->] (node_19) ..controls (151.91bp,274.49bp) and (194.86bp,289.89bp) .. (node_13); \draw [black,->] (node_11) ..controls (310.22bp,384.83bp) and (355.65bp,399.06bp) .. (node_7); \draw [black,->] (node_18) ..controls (148.67bp,171.07bp) and (155.59bp,182.14bp) .. (node_0); \draw [black,->] (node_3) ..controls (114.5bp,598.95bp) and (114.5bp,608.97bp) .. (node_2); \draw [black,->] (node_9) ..controls (111.5bp,490.95bp) and (111.5bp,500.97bp) .. (node_5); \draw [black,->] (node_5) ..controls (112.36bp,544.95bp) and (112.94bp,554.97bp) .. (node_3); \draw [black,->] (node_21) ..controls (151.91bp,328.49bp) and (194.86bp,343.89bp) .. (node_11); \draw [black,->] (node_21) ..controls (111.5bp,327.63bp) and (111.5bp,339.75bp) .. (node_23); \draw [black,->] (node_19) ..controls (111.5bp,273.63bp) and (111.5bp,285.75bp) .. (node_21); \draw [black,->] (node_17) ..controls (111.5bp,220.95bp) and (111.5bp,232.26bp) .. (node_19); \draw [black,->] (node_18) ..controls (132.6bp,171.07bp) and (125.91bp,182.14bp) .. (node_17); \draw [black,->] (node_24) ..controls (140.5bp,20.707bp) and (140.5bp,30.976bp) .. (node_22); \draw [black,->] (node_23) ..controls (91.483bp,382.46bp) and (70.843bp,397.36bp) .. (node_25); \draw [black,->] (node_23) ..controls (131.11bp,381.97bp) and (150.28bp,395.62bp) .. (node_10); \draw [black,->] (node_13) ..controls (256.5bp,328.95bp) and (256.5bp,338.97bp) .. (node_11); \draw [black,->] (node_16) ..controls (352.5bp,598.95bp) and (352.5bp,608.97bp) .. (node_15); \draw [black,->] (node_1) ..controls (258.64bp,274.95bp) and (258.06bp,284.97bp) .. (node_13); \draw [black,->] (node_0) ..controls (154.15bp,221.85bp) and (138.27bp,235.32bp) .. (node_19); \draw [black,->] (node_12) ..controls (233.5bp,760.95bp) and (233.5bp,770.97bp) .. (node_8); \draw [black,->] (node_8) ..controls (233.5bp,815.12bp) and (233.5bp,825.1bp) .. (node_26); \draw [black,->] (node_3) ..controls (192.75bp,601.1bp) and (260.63bp,615.93bp) .. (node_15); \draw [black,->] (node_0) ..controls (194.89bp,221.7bp) and (218.18bp,234.79bp) .. (node_1); \draw [black,->] (node_4) ..controls (274.25bp,547.1bp) and (206.37bp,561.93bp) .. (node_3); \draw [black,->] (node_2) ..controls (152.26bp,654.5bp) and (183.16bp,668.0bp) .. (node_14); \draw [black,->] (node_6) ..controls (271.93bp,493.1bp) and (203.76bp,507.93bp) .. (node_5); \draw [black,->] (node_4) ..controls (352.5bp,544.95bp) and (352.5bp,554.97bp) .. (node_16); \draw [black,->] (node_20) ..controls (140.5bp,120.71bp) and (140.5bp,130.98bp) .. (node_18); \draw [black,->] (node_14) ..controls (233.5bp,706.95bp) and (233.5bp,716.97bp) .. (node_12); % \end{tikzpicture}
An error occurred.
This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex 2015.12.28) 7 JUL 2017 17:53 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **\nonstopmode \input{tmpTrH4aS.tex} (./tmpTrH4aS.tex (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls Document Class: article 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) ) \c@part=\count79 \c@section=\count80 \c@subsection=\count81 \c@subsubsection=\count82 \c@paragraph=\count83 \c@subparagraph=\count84 \c@figure=\count85 \c@table=\count86 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 \bibindent=\dimen102 ) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty Package: amsmath 2013/01/14 v2.14 AMS math features \@mathmargin=\skip43 For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty Package: amstext 2000/06/29 v2.01 (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty File: amsgen.sty 1999/11/30 v2.0 \@emptytoks=\toks14 \ex@=\dimen103 )) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty Package: amsbsy 1999/11/29 v1.2d \pmbraise@=\dimen104 ) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty Package: amsopn 1999/12/14 v2.01 operator names ) \inf@bad=\count87 LaTeX Info: Redefining \frac on input line 210. \uproot@=\count88 \leftroot@=\count89 LaTeX Info: Redefining \overline on input line 306. \classnum@=\count90 \DOTSCASE@=\count91 LaTeX Info: Redefining \ldots on input line 378. LaTeX Info: Redefining \dots on input line 381. LaTeX Info: Redefining \cdots on input line 466. \Mathstrutbox@=\box26 \strutbox@=\box27 \big@size=\dimen105 LaTeX Font Info: Redeclaring font encoding OML on input line 566. LaTeX Font Info: Redeclaring font encoding OMS on input line 567. \macc@depth=\count92 \c@MaxMatrixCols=\count93 \dotsspace@=\muskip10 \c@parentequation=\count94 \dspbrk@lvl=\count95 \tag@help=\toks15 \row@=\count96 \column@=\count97 \maxfields@=\count98 \andhelp@=\toks16 \eqnshift@=\dimen106 \alignsep@=\dimen107 \tagshift@=\dimen108 \tagwidth@=\dimen109 \totwidth@=\dimen110 \lineht@=\dimen111 \@envbody=\toks17 \multlinegap=\skip44 \multlinetaggap=\skip45 \mathdisplay@stack=\toks18 LaTeX Info: Redefining \[ on input line 2665. LaTeX Info: Redefining \] on input line 2666. ) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty Package: amssymb 2013/01/14 v3.01 AMS font symbols (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support \symAMSa=\mathgroup4 \symAMSb=\mathgroup5 LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' (Font) U/euf/m/n --> U/euf/b/n on input line 106. )) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty Package: keyval 2014/10/28 v1.15 key=value parser (DPC) \KV@toks@=\toks19 ) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty Package: graphics 2014/10/28 v1.0p Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty Package: trig 1999/03/16 v1.09 sin cos tan (DPC) ) (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live ) Package graphics Info: Driver file: pdftex.def on input line 94. (/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO) ) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO) ) \Gread@gobject=\count99 )) \Gin@req@height=\dimen112 \Gin@req@width=\dimen113 ) (/usr/share/texlive/texmf-dist/tex/latex/jknapltx/mathrsfs.sty Package: mathrsfs 1996/01/01 Math RSFS package v1.0 (jk) \symrsfs=\mathgroup6 ) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty Package: inputenc 2015/03/17 v1.2c Input encoding file \inpenc@prehook=\toks20 \inpenc@posthook=\toks21 (/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def File: utf8.def 2014/09/29 v1.1m UTF-8 support for inputenc Now handling font encoding OML ... ... no UTF-8 mapping file for font encoding OML Now handling font encoding T1 ... ... processing UTF-8 mapping file for font encoding T1 (/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu File: t1enc.dfu 2014/09/29 v1.1m UTF-8 support for inputenc defining Unicode char U+00A1 (decimal 161) defining Unicode char U+00A3 (decimal 163) defining Unicode char U+00AB (decimal 171) defining Unicode char U+00BB (decimal 187) defining Unicode char U+00BF (decimal 191) defining Unicode char U+00C0 (decimal 192) defining Unicode char U+00C1 (decimal 193) defining Unicode char U+00C2 (decimal 194) defining Unicode char U+00C3 (decimal 195) defining Unicode char U+00C4 (decimal 196) defining Unicode char U+00C5 (decimal 197) defining Unicode char U+00C6 (decimal 198) defining Unicode char U+00C7 (decimal 199) defining Unicode char U+00C8 (decimal 200) defining Unicode char U+00C9 (decimal 201) defining Unicode char U+00CA (decimal 202) defining Unicode char U+00CB (decimal 203) defining Unicode char U+00CC (decimal 204) defining Unicode char U+00CD (decimal 205) defining Unicode char U+00CE (decimal 206) defining Unicode char U+00CF (decimal 207) defining Unicode char U+00D0 (decimal 208) defining Unicode char U+00D1 (decimal 209) defining Unicode char U+00D2 (decimal 210) defining Unicode char U+00D3 (decimal 211) defining Unicode char U+00D4 (decimal 212) defining Unicode char U+00D5 (decimal 213) defining Unicode char U+00D6 (decimal 214) defining Unicode char U+00D8 (decimal 216) defining Unicode char U+00D9 (decimal 217) defining Unicode char U+00DA (decimal 218) defining Unicode char U+00DB (decimal 219) defining Unicode char U+00DC (decimal 220) defining Unicode char U+00DD (decimal 221) defining Unicode char U+00DE (decimal 222) defining Unicode char U+00DF (decimal 223) defining Unicode char U+00E0 (decimal 224) defining Unicode char U+00E1 (decimal 225) defining Unicode char U+00E2 (decimal 226) defining Unicode char U+00E3 (decimal 227) defining Unicode char U+00E4 (decimal 228) defining Unicode char U+00E5 (decimal 229) defining Unicode char U+00E6 (decimal 230) defining Unicode char U+00E7 (decimal 231) defining Unicode char U+00E8 (decimal 232) defining Unicode char U+00E9 (decimal 233) defining Unicode char U+00EA (decimal 234) defining Unicode char U+00EB (decimal 235) defining Unicode char U+00EC (decimal 236) defining Unicode char U+00ED (decimal 237) defining Unicode char U+00EE (decimal 238) defining Unicode char U+00EF (decimal 239) defining Unicode char U+00F0 (decimal 240) defining Unicode char U+00F1 (decimal 241) defining Unicode char U+00F2 (decimal 242) defining Unicode char U+00F3 (decimal 243) defining Unicode char U+00F4 (decimal 244) defining Unicode char U+00F5 (decimal 245) defining Unicode char U+00F6 (decimal 246) defining Unicode char U+00F8 (decimal 248) defining Unicode char U+00F9 (decimal 249) defining Unicode char U+00FA (decimal 250) defining Unicode char U+00FB (decimal 251) defining Unicode char U+00FC (decimal 252) defining Unicode char U+00FD (decimal 253) defining Unicode char U+00FE (decimal 254) defining Unicode char U+00FF (decimal 255) defining Unicode char U+0102 (decimal 258) defining Unicode char U+0103 (decimal 259) defining Unicode char U+0104 (decimal 260) defining Unicode char U+0105 (decimal 261) defining Unicode char U+0106 (decimal 262) defining Unicode char U+0107 (decimal 263) defining Unicode char U+010C (decimal 268) defining Unicode char U+010D (decimal 269) defining Unicode char U+010E (decimal 270) defining Unicode char U+010F (decimal 271) defining Unicode char U+0110 (decimal 272) defining Unicode char U+0111 (decimal 273) defining Unicode char U+0118 (decimal 280) defining Unicode char U+0119 (decimal 281) defining Unicode char U+011A (decimal 282) defining Unicode char U+011B (decimal 283) defining Unicode char U+011E (decimal 286) defining Unicode char U+011F (decimal 287) defining Unicode char U+0130 (decimal 304) defining Unicode char U+0131 (decimal 305) defining Unicode char U+0132 (decimal 306) defining Unicode char U+0133 (decimal 307) defining Unicode char U+0139 (decimal 313) defining Unicode char U+013A (decimal 314) defining Unicode char U+013D (decimal 317) defining Unicode char U+013E (decimal 318) defining Unicode char U+0141 (decimal 321) defining Unicode char U+0142 (decimal 322) defining Unicode char U+0143 (decimal 323) defining Unicode char U+0144 (decimal 324) defining Unicode char U+0147 (decimal 327) defining Unicode char U+0148 (decimal 328) defining Unicode char U+014A (decimal 330) defining Unicode char U+014B (decimal 331) defining Unicode char U+0150 (decimal 336) defining Unicode char U+0151 (decimal 337) defining Unicode char U+0152 (decimal 338) defining Unicode char U+0153 (decimal 339) defining Unicode char U+0154 (decimal 340) defining Unicode char U+0155 (decimal 341) defining Unicode char U+0158 (decimal 344) defining Unicode char U+0159 (decimal 345) defining Unicode char U+015A (decimal 346) defining Unicode char U+015B (decimal 347) defining Unicode char U+015E (decimal 350) defining Unicode char U+015F (decimal 351) defining Unicode char U+0160 (decimal 352) defining Unicode char U+0161 (decimal 353) defining Unicode char U+0162 (decimal 354) defining Unicode char U+0163 (decimal 355) defining Unicode char U+0164 (decimal 356) defining Unicode char U+0165 (decimal 357) defining Unicode char U+016E (decimal 366) defining Unicode char U+016F (decimal 367) defining Unicode char U+0170 (decimal 368) defining Unicode char U+0171 (decimal 369) defining Unicode char U+0178 (decimal 376) defining Unicode char U+0179 (decimal 377) defining Unicode char U+017A (decimal 378) defining Unicode char U+017B (decimal 379) defining Unicode char U+017C (decimal 380) defining Unicode char U+017D (decimal 381) defining Unicode char U+017E (decimal 382) defining Unicode char U+200C (decimal 8204) defining Unicode char U+2013 (decimal 8211) defining Unicode char U+2014 (decimal 8212) defining Unicode char U+2018 (decimal 8216) defining Unicode char U+2019 (decimal 8217) defining Unicode char U+201A (decimal 8218) defining Unicode char U+201C (decimal 8220) defining Unicode char U+201D (decimal 8221) defining Unicode char U+201E (decimal 8222) defining Unicode char U+2030 (decimal 8240) defining Unicode char U+2031 (decimal 8241) defining Unicode char U+2039 (decimal 8249) defining Unicode char U+203A (decimal 8250) defining Unicode char U+2423 (decimal 9251) ) Now handling font encoding OT1 ... ... processing UTF-8 mapping file for font encoding OT1 (/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu File: ot1enc.dfu 2014/09/29 v1.1m UTF-8 support for inputenc defining Unicode char U+00A1 (decimal 161) defining Unicode char U+00A3 (decimal 163) defining Unicode char U+00B8 (decimal 184) defining Unicode char U+00BF (decimal 191) defining Unicode char U+00C5 (decimal 197) defining Unicode char U+00C6 (decimal 198) defining Unicode char U+00D8 (decimal 216) defining Unicode char U+00DF (decimal 223) defining Unicode char U+00E6 (decimal 230) defining Unicode char U+00EC (decimal 236) defining Unicode char U+00ED (decimal 237) defining Unicode char U+00EE (decimal 238) defining Unicode char U+00EF (decimal 239) defining Unicode char U+00F8 (decimal 248) defining Unicode char U+0131 (decimal 305) defining Unicode char U+0141 (decimal 321) defining Unicode char U+0142 (decimal 322) defining Unicode char U+0152 (decimal 338) defining Unicode char U+0153 (decimal 339) defining Unicode char U+2013 (decimal 8211) defining Unicode char U+2014 (decimal 8212) defining Unicode char U+2018 (decimal 8216) defining Unicode char U+2019 (decimal 8217) defining Unicode char U+201C (decimal 8220) defining Unicode char U+201D (decimal 8221) ) Now handling font encoding OMS ... ... processing UTF-8 mapping file for font encoding OMS (/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu File: omsenc.dfu 2014/09/29 v1.1m UTF-8 support for inputenc defining Unicode char U+00A7 (decimal 167) defining Unicode char U+00B6 (decimal 182) defining Unicode char U+00B7 (decimal 183) defining Unicode char U+2020 (decimal 8224) defining Unicode char U+2021 (decimal 8225) defining Unicode char U+2022 (decimal 8226) ) Now handling font encoding OMX ... ... no UTF-8 mapping file for font encoding OMX Now handling font encoding U ... ... no UTF-8 mapping file for font encoding U defining Unicode char U+00A9 (decimal 169) defining Unicode char U+00AA (decimal 170) defining Unicode char U+00AE (decimal 174) defining Unicode char U+00BA (decimal 186) defining Unicode char U+02C6 (decimal 710) defining Unicode char U+02DC (decimal 732) defining Unicode char U+200C (decimal 8204) defining Unicode char U+2026 (decimal 8230) defining Unicode char U+2122 (decimal 8482) defining Unicode char U+2423 (decimal 9251) )) (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty Package: fontenc 2005/09/27 v1.99g Standard LaTeX package (/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file LaTeX Font Info: Redeclaring font encoding T1 on input line 48. )) (/usr/share/texlive/texmf-dist/tex/latex/soul/soul.sty Package: soul 2003/11/17 v2.4 letterspacing/underlining (mf) \SOUL@word=\toks22 \SOUL@lasttoken=\toks23 \SOUL@cmds=\toks24 \SOUL@buffer=\toks25 \SOUL@token=\toks26 \SOUL@spaceskip=\skip46 \SOUL@ttwidth=\dimen114 \SOUL@uldp=\dimen115 \SOUL@ulht=\dimen116 ) No file tmpTrH4aS.aux. \openout1 = `tmpTrH4aS.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 37. LaTeX Font Info: ... okay on input line 37. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 37. LaTeX Font Info: ... okay on input line 37. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 37. LaTeX Font Info: ... okay on input line 37. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 37. LaTeX Font Info: ... okay on input line 37. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 37. LaTeX Font Info: ... okay on input line 37. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 37. LaTeX Font Info: ... okay on input line 37. (/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] \scratchcounter=\count100 \scratchdimen=\dimen117 \scratchbox=\box28 \nofMPsegments=\count101 \nofMParguments=\count102 \everyMPshowfont=\toks27 \MPscratchCnt=\count103 \MPscratchDim=\dimen118 \MPnumerator=\count104 \makeMPintoPDFobject=\count105 \everyMPtoPDFconversion=\toks28 ) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO ) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO) Package ifluatex Info: LuaTeX not detected. ) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO) Package ifpdf Info: pdfTeX in PDF mode is detected. ) Package pdftexcmds Info: LuaTeX not detected. Package pdftexcmds Info: \pdf@primitive is available. Package pdftexcmds Info: \pdf@ifprimitive is available. Package pdftexcmds Info: \pdfdraftmode found. ) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO) )) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO) Package etexcmds Info: Could not find \expanded. (etexcmds) That can mean that you are not using pdfTeX 1.50 or (etexcmds) that some package has redefined \expanded. (etexcmds) In the latter case, load this package earlier. ))) Package grfext Info: Graphics extension search list: (grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE G,.JBIG2,.JB2,.eps] (grfext) \AppendGraphicsExtensions on input line 452. (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv e )) ! LaTeX Error: Environment tikzpicture undefined. See the LaTeX manual or LaTeX Companion for explanation. Type H <return> for immediate help. ... l.38 \begin{tikzpicture} [>=latex,line join=bevel,] Your command was ignored. Type I <command> <return> to replace it with another command, or <return> to continue without it. ! Undefined control sequence. l.40 \node (node_26) at (233.5bp,851.0bp) [draw,draw=none] {$-e_{6} + e_{7}$}; The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.40 \node (node_ 26) at (233.5bp,851.0bp) [draw,draw=none] {$-e_{6} + e_{7}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. LaTeX Font Info: Try loading font information for U+msa on input line 40. (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd File: umsa.fd 2013/01/14 v3.01 AMS symbols A ) LaTeX Font Info: Try loading font information for U+msb on input line 40. (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd File: umsb.fd 2013/01/14 v3.01 AMS symbols B ) LaTeX Font Info: Try loading font information for U+rsfs on input line 40. (/usr/share/texlive/texmf-dist/tex/latex/jknapltx/ursfs.fd File: ursfs.fd 1998/03/24 rsfs font definition file (jk) ) ! Missing } inserted. <inserted text> } l.40 ...) at (233.5bp,851.0bp) [draw,draw=none] {$ -e_{6} + e_{7}$}; I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.40 ...t (233.5bp,851.0bp) [draw,draw=none] {$-e_ {6} + e_{7}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten \endgroup. l.40 ...1.0bp) [draw,draw=none] {$-e_{6} + e_{7}$} ; I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.41 \node (node_24) at (140.5bp,7.0bp) [draw,draw=none] {$-e_{4} + e_{5}$}; The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.41 \node (node_ 24) at (140.5bp,7.0bp) [draw,draw=none] {$-e_{4} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.41 ...24) at (140.5bp,7.0bp) [draw,draw=none] {$ -e_{4} + e_{5}$}; I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.41 ... at (140.5bp,7.0bp) [draw,draw=none] {$-e_ {4} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten \endgroup. l.41 ...7.0bp) [draw,draw=none] {$-e_{4} + e_{5}$} ; I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.42 \node (node_25) at (39.5bp,421.0bp) [draw,draw=none] {$e_{4} + e_{5}$}; The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.42 \node (node_ 25) at (39.5bp,421.0bp) [draw,draw=none] {$e_{4} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.42 ...5) at (39.5bp,421.0bp) [draw,draw=none] {$ e_{4} + e_{5}$}; I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.42 ... at (39.5bp,421.0bp) [draw,draw=none] {$e_ {4} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten \endgroup. l.42 ...21.0bp) [draw,draw=none] {$e_{4} + e_{5}$} ; I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.43 \node (node_22) at (140.5bp,57.0bp) [draw,draw=none] {$-e_{3} + e_{5}$}; The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.43 \node (node_ 22) at (140.5bp,57.0bp) [draw,draw=none] {$-e_{3} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.43 ...2) at (140.5bp,57.0bp) [draw,draw=none] {$ -e_{3} + e_{5}$}; I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.43 ...at (140.5bp,57.0bp) [draw,draw=none] {$-e_ {3} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten \endgroup. l.43 ...7.0bp) [draw,draw=none] {$-e_{3} + e_{5}$} ; I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.44 \node (node_23) at (111.5bp,367.0bp) [draw,draw=none] {$e_{3} + e_{5}$}; The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.44 \node (node_ 23) at (111.5bp,367.0bp) [draw,draw=none] {$e_{3} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.44 ...) at (111.5bp,367.0bp) [draw,draw=none] {$ e_{3} + e_{5}$}; I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.44 ...at (111.5bp,367.0bp) [draw,draw=none] {$e_ {3} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten \endgroup. l.44 ...67.0bp) [draw,draw=none] {$e_{3} + e_{5}$} ; I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.45 \node (node_20) at (140.5bp,107.0bp) [draw,draw=none] {$-e_{2} + e_{5... The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.45 \node (node_ 20) at (140.5bp,107.0bp) [draw,draw=none] {$-e_{2} + e_{5... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.45 ...) at (140.5bp,107.0bp) [draw,draw=none] {$ -e_{2} + e_{5}$}; I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.45 ...t (140.5bp,107.0bp) [draw,draw=none] {$-e_ {2} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten \endgroup. l.45 ...7.0bp) [draw,draw=none] {$-e_{2} + e_{5}$} ; I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.46 \node (node_21) at (111.5bp,313.0bp) [draw,draw=none] {$e_{2} + e_{5}$}; The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.46 \node (node_ 21) at (111.5bp,313.0bp) [draw,draw=none] {$e_{2} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.46 ...) at (111.5bp,313.0bp) [draw,draw=none] {$ e_{2} + e_{5}$}; I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.46 ...at (111.5bp,313.0bp) [draw,draw=none] {$e_ {2} + e_{5}$}; I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten \endgroup. l.46 ...13.0bp) [draw,draw=none] {$e_{2} + e_{5}$} ; I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.47 \node (node_9) at (111.5bp,475.0bp) [draw,draw=none] {$\frac{1}{2}e_{... The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.47 \node (node_ 9) at (111.5bp,475.0bp) [draw,draw=none] {$\frac{1}{2}e_{... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.47 ...) at (111.5bp,475.0bp) [draw,draw=none] {$ \frac{1}{2}e_{0} - \frac{1... I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.47 ...bp,475.0bp) [draw,draw=none] {$\frac{1}{2} e_{0} - \frac{1}{2}e_{1} -... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten $. \frac #1#2->{\begingroup #1\endgroup \@@over #2} l.47 ...bp,475.0bp) [draw,draw=none] {$\frac{1}{2} e_{0} - \frac{1}{2}e_{1} -... I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.48 \node (node_8) at (233.5bp,799.0bp) [draw,draw=none] {$-\frac{1}{2}e_... The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.48 \node (node_ 8) at (233.5bp,799.0bp) [draw,draw=none] {$-\frac{1}{2}e_... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.48 ...) at (233.5bp,799.0bp) [draw,draw=none] {$ -\frac{1}{2}e_{0} + \frac{... I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.48 ...p,799.0bp) [draw,draw=none] {$-\frac{1}{2} e_{0} + \frac{1}{2}e_{1} +... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten $. \frac #1#2->{\begingroup #1\endgroup \@@over #2} l.48 ...p,799.0bp) [draw,draw=none] {$-\frac{1}{2} e_{0} + \frac{1}{2}e_{1} +... I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.49 \node (node_7) at (422.5bp,421.0bp) [draw,draw=none] {$-\frac{1}{2}e_... The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.49 \node (node_ 7) at (422.5bp,421.0bp) [draw,draw=none] {$-\frac{1}{2}e_... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.49 ...) at (422.5bp,421.0bp) [draw,draw=none] {$ -\frac{1}{2}e_{0} + \frac{... I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.49 ...p,421.0bp) [draw,draw=none] {$-\frac{1}{2} e_{0} + \frac{1}{2}e_{1} +... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten $. \frac #1#2->{\begingroup #1\endgroup \@@over #2} l.49 ...p,421.0bp) [draw,draw=none] {$-\frac{1}{2} e_{0} + \frac{1}{2}e_{1} +... I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.50 \node (node_6) at (350.5bp,475.0bp) [draw,draw=none] {$-\frac{1}{2}e_... The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.50 \node (node_ 6) at (350.5bp,475.0bp) [draw,draw=none] {$-\frac{1}{2}e_... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.50 ...) at (350.5bp,475.0bp) [draw,draw=none] {$ -\frac{1}{2}e_{0} + \frac{... I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> $ l.50 ...p,475.0bp) [draw,draw=none] {$-\frac{1}{2} e_{0} + \frac{1}{2}e_{1} -... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Extra }, or forgotten $. \frac #1#2->{\begingroup #1\endgroup \@@over #2} l.50 ...p,475.0bp) [draw,draw=none] {$-\frac{1}{2} e_{0} + \frac{1}{2}e_{1} -... I've deleted a group-closing symbol because it seems to be spurious, as in `$x}$'. But perhaps the } is legitimate and you forgot something else, as in `\hbox{$x}'. In such cases the way to recover is to insert both the forgotten and the deleted material, e.g., by typing `I$}'. ! Undefined control sequence. l.51 \node (node_5) at (111.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}e_... The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined. ! Missing $ inserted. <inserted text> $ l.51 \node (node_ 5) at (111.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}e_... I've inserted a begin-math/end-math symbol since I think you left one out. Proceed, with fingers crossed. ! Missing } inserted. <inserted text> } l.51 ...) at (111.5bp,529.0bp) [draw,draw=none] {$ -\frac{1}{2}e_{0} + \frac{... I've inserted something that you may have forgotten. (See the <inserted text> above.) With luck, this will get me unwedged. But if you really didn't forget anything, try typing `2' now; then my insertion and my current dilemma will both disappear. ! Missing $ inserted. <inserted text> [...]
print(fix_basis_latex(nRP))
\begin{tikzpicture}[>=latex,line join=bevel,] %% \node (node_26) at (233.5bp,851.0bp) [draw,draw=none] {$-\epsilon_{7} + \epsilon_{8}$}; \node (node_24) at (140.5bp,7.0bp) [draw,draw=none] {$-\epsilon_{5} + \epsilon_{6}$}; \node (node_25) at (39.5bp,421.0bp) [draw,draw=none] {$\epsilon_{5} + \epsilon_{6}$}; \node (node_22) at (140.5bp,57.0bp) [draw,draw=none] {$-\epsilon_{4} + \epsilon_{6}$}; \node (node_23) at (111.5bp,367.0bp) [draw,draw=none] {$\epsilon_{4} + \epsilon_{6}$}; \node (node_20) at (140.5bp,107.0bp) [draw,draw=none] {$-\epsilon_{3} + \epsilon_{6}$}; \node (node_21) at (111.5bp,313.0bp) [draw,draw=none] {$\epsilon_{3} + \epsilon_{6}$}; \node (node_9) at (111.5bp,475.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_8) at (233.5bp,799.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_7) at (422.5bp,421.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_6) at (350.5bp,475.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_5) at (111.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_4) at (352.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_3) at (114.5bp,583.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_2) at (114.5bp,637.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_1) at (259.5bp,259.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_0) at (170.5bp,207.0bp) [draw,draw=none] {$-\epsilon_{1} + \epsilon_{6}$}; \node (node_19) at (111.5bp,259.0bp) [draw,draw=none] {$\epsilon_{2} + \epsilon_{6}$}; \node (node_18) at (140.5bp,157.0bp) [draw,draw=none] {$-\epsilon_{2} + \epsilon_{6}$}; \node (node_17) at (111.5bp,207.0bp) [draw,draw=none] {$\epsilon_{1} + \epsilon_{6}$}; \node (node_16) at (352.5bp,583.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_15) at (352.5bp,637.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_14) at (233.5bp,691.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_13) at (256.5bp,313.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_12) at (233.5bp,745.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_11) at (256.5bp,367.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_10) at (184.5bp,421.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \draw [black,->] (node_6) ..controls (351.08bp,490.95bp) and (351.46bp,500.97bp) .. (node_4); \draw [black,->] (node_15) ..controls (314.74bp,654.5bp) and (283.84bp,668.0bp) .. (node_14); \draw [black,->] (node_25) ..controls (58.839bp,435.97bp) and (77.748bp,449.62bp) .. (node_9); \draw [black,->] (node_7) ..controls (400.32bp,438.02bp) and (383.5bp,450.16bp) .. (node_6); \draw [black,->] (node_10) ..controls (161.91bp,438.09bp) and (144.63bp,450.4bp) .. (node_9); \draw [black,->] (node_11) ..controls (234.32bp,384.02bp) and (217.5bp,396.16bp) .. (node_10); \draw [black,->] (node_22) ..controls (140.5bp,70.707bp) and (140.5bp,80.976bp) .. (node_20); \draw [black,->] (node_10) ..controls (238.22bp,438.83bp) and (283.65bp,453.06bp) .. (node_6); \draw [black,->] (node_19) ..controls (151.91bp,274.49bp) and (194.86bp,289.89bp) .. (node_13); \draw [black,->] (node_11) ..controls (310.22bp,384.83bp) and (355.65bp,399.06bp) .. (node_7); \draw [black,->] (node_18) ..controls (148.67bp,171.07bp) and (155.59bp,182.14bp) .. (node_0); \draw [black,->] (node_3) ..controls (114.5bp,598.95bp) and (114.5bp,608.97bp) .. (node_2); \draw [black,->] (node_9) ..controls (111.5bp,490.95bp) and (111.5bp,500.97bp) .. (node_5); \draw [black,->] (node_5) ..controls (112.36bp,544.95bp) and (112.94bp,554.97bp) .. (node_3); \draw [black,->] (node_21) ..controls (151.91bp,328.49bp) and (194.86bp,343.89bp) .. (node_11); \draw [black,->] (node_21) ..controls (111.5bp,327.63bp) and (111.5bp,339.75bp) .. (node_23); \draw [black,->] (node_19) ..controls (111.5bp,273.63bp) and (111.5bp,285.75bp) .. (node_21); \draw [black,->] (node_17) ..controls (111.5bp,220.95bp) and (111.5bp,232.26bp) .. (node_19); \draw [black,->] (node_18) ..controls (132.6bp,171.07bp) and (125.91bp,182.14bp) .. (node_17); \draw [black,->] (node_24) ..controls (140.5bp,20.707bp) and (140.5bp,30.976bp) .. (node_22); \draw [black,->] (node_23) ..controls (91.483bp,382.46bp) and (70.843bp,397.36bp) .. (node_25); \draw [black,->] (node_23) ..controls (131.11bp,381.97bp) and (150.28bp,395.62bp) .. (node_10); \draw [black,->] (node_13) ..controls (256.5bp,328.95bp) and (256.5bp,338.97bp) .. (node_11); \draw [black,->] (node_16) ..controls (352.5bp,598.95bp) and (352.5bp,608.97bp) .. (node_15); \draw [black,->] (node_1) ..controls (258.64bp,274.95bp) and (258.06bp,284.97bp) .. (node_13); \draw [black,->] (node_0) ..controls (154.15bp,221.85bp) and (138.27bp,235.32bp) .. (node_19); \draw [black,->] (node_12) ..controls (233.5bp,760.95bp) and (233.5bp,770.97bp) .. (node_8); \draw [black,->] (node_8) ..controls (233.5bp,815.12bp) and (233.5bp,825.1bp) .. (node_26); \draw [black,->] (node_3) ..controls (192.75bp,601.1bp) and (260.63bp,615.93bp) .. (node_15); \draw [black,->] (node_0) ..controls (194.89bp,221.7bp) and (218.18bp,234.79bp) .. (node_1); \draw [black,->] (node_4) ..controls (274.25bp,547.1bp) and (206.37bp,561.93bp) .. (node_3); \draw [black,->] (node_2) ..controls (152.26bp,654.5bp) and (183.16bp,668.0bp) .. (node_14); \draw [black,->] (node_6) ..controls (271.93bp,493.1bp) and (203.76bp,507.93bp) .. (node_5); \draw [black,->] (node_4) ..controls (352.5bp,544.95bp) and (352.5bp,554.97bp) .. (node_16); \draw [black,->] (node_20) ..controls (140.5bp,120.71bp) and (140.5bp,130.98bp) .. (node_18); \draw [black,->] (node_14) ..controls (233.5bp,706.95bp) and (233.5bp,716.97bp) .. (node_12); % \end{tikzpicture}
%latex \begin{tikzpicture}[>=latex,line join=bevel,] %% \node (node_26) at (233.5bp,851.0bp) [draw,draw=none] {$-\epsilon_{7} + \epsilon_{8}$}; \node (node_24) at (140.5bp,7.0bp) [draw,draw=none] {$-\epsilon_{5} + \epsilon_{6}$}; \node (node_25) at (39.5bp,421.0bp) [draw,draw=none] {$\epsilon_{5} + \epsilon_{6}$}; \node (node_22) at (140.5bp,57.0bp) [draw,draw=none] {$-\epsilon_{4} + \epsilon_{6}$}; \node (node_23) at (111.5bp,367.0bp) [draw,draw=none] {$\epsilon_{4} + \epsilon_{6}$}; \node (node_20) at (140.5bp,107.0bp) [draw,draw=none] {$-\epsilon_{3} + \epsilon_{6}$}; \node (node_21) at (111.5bp,313.0bp) [draw,draw=none] {$\epsilon_{3} + \epsilon_{6}$}; \node (node_9) at (111.5bp,475.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_8) at (233.5bp,799.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_7) at (422.5bp,421.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_6) at (350.5bp,475.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_5) at (111.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_4) at (352.5bp,529.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_3) at (114.5bp,583.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_2) at (114.5bp,637.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_1) at (259.5bp,259.0bp) [draw,draw=none] {$-\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_0) at (170.5bp,207.0bp) [draw,draw=none] {$-\epsilon_{1} + \epsilon_{6}$}; \node (node_19) at (111.5bp,259.0bp) [draw,draw=none] {$\epsilon_{2} + \epsilon_{6}$}; \node (node_18) at (140.5bp,157.0bp) [draw,draw=none] {$-\epsilon_{2} + \epsilon_{6}$}; \node (node_17) at (111.5bp,207.0bp) [draw,draw=none] {$\epsilon_{1} + \epsilon_{6}$}; \node (node_16) at (352.5bp,583.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_15) at (352.5bp,637.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_14) at (233.5bp,691.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_13) at (256.5bp,313.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} + \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_12) at (233.5bp,745.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} + \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_11) at (256.5bp,367.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} + \frac{1}{2}\epsilon_{3} - \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \node (node_10) at (184.5bp,421.0bp) [draw,draw=none] {$\frac{1}{2}\epsilon_{1} - \frac{1}{2}\epsilon_{2} - \frac{1}{2}\epsilon_{3} + \frac{1}{2}\epsilon_{4} - \frac{1}{2}\epsilon_{5} + \frac{1}{2}\epsilon_{6} - \frac{1}{2}\epsilon_{7} + \frac{1}{2}\epsilon_{8}$}; \draw [black,->] (node_6) ..controls (351.08bp,490.95bp) and (351.46bp,500.97bp) .. (node_4); \draw [black,->] (node_15) ..controls (314.74bp,654.5bp) and (283.84bp,668.0bp) .. (node_14); \draw [black,->] (node_25) ..controls (58.839bp,435.97bp) and (77.748bp,449.62bp) .. (node_9); \draw [black,->] (node_7) ..controls (400.32bp,438.02bp) and (383.5bp,450.16bp) .. (node_6); \draw [black,->] (node_10) ..controls (161.91bp,438.09bp) and (144.63bp,450.4bp) .. (node_9); \draw [black,->] (node_11) ..controls (234.32bp,384.02bp) and (217.5bp,396.16bp) .. (node_10); \draw [black,->] (node_22) ..controls (140.5bp,70.707bp) and (140.5bp,80.976bp) .. (node_20); \draw [black,->] (node_10) ..controls (238.22bp,438.83bp) and (283.65bp,453.06bp) .. (node_6); \draw [black,->] (node_19) ..controls (151.91bp,274.49bp) and (194.86bp,289.89bp) .. (node_13); \draw [black,->] (node_11) ..controls (310.22bp,384.83bp) and (355.65bp,399.06bp) .. (node_7); \draw [black,->] (node_18) ..controls (148.67bp,171.07bp) and (155.59bp,182.14bp) .. (node_0); \draw [black,->] (node_3) ..controls (114.5bp,598.95bp) and (114.5bp,608.97bp) .. (node_2); \draw [black,->] (node_9) ..controls (111.5bp,490.95bp) and (111.5bp,500.97bp) .. (node_5); \draw [black,->] (node_5) ..controls (112.36bp,544.95bp) and (112.94bp,554.97bp) .. (node_3); \draw [black,->] (node_21) ..controls (151.91bp,328.49bp) and (194.86bp,343.89bp) .. (node_11); \draw [black,->] (node_21) ..controls (111.5bp,327.63bp) and (111.5bp,339.75bp) .. (node_23); \draw [black,->] (node_19) ..controls (111.5bp,273.63bp) and (111.5bp,285.75bp) .. (node_21); \draw [black,->] (node_17) ..controls (111.5bp,220.95bp) and (111.5bp,232.26bp) .. (node_19); \draw [black,->] (node_18) ..controls (132.6bp,171.07bp) and (125.91bp,182.14bp) .. (node_17); \draw [black,->] (node_24) ..controls (140.5bp,20.707bp) and (140.5bp,30.976bp) .. (node_22); \draw [black,->] (node_23) ..controls (91.483bp,382.46bp) and (70.843bp,397.36bp) .. (node_25); \draw [black,->] (node_23) ..controls (131.11bp,381.97bp) and (150.28bp,395.62bp) .. (node_10); \draw [black,->] (node_13) ..controls (256.5bp,328.95bp) and (256.5bp,338.97bp) .. (node_11); \draw [black,->] (node_16) ..controls (352.5bp,598.95bp) and (352.5bp,608.97bp) .. (node_15); \draw [black,->] (node_1) ..controls (258.64bp,274.95bp) and (258.06bp,284.97bp) .. (node_13); \draw [black,->] (node_0) ..controls (154.15bp,221.85bp) and (138.27bp,235.32bp) .. (node_19); \draw [black,->] (node_12) ..controls (233.5bp,760.95bp) and (233.5bp,770.97bp) .. (node_8); \draw [black,->] (node_8) ..controls (233.5bp,815.12bp) and (233.5bp,825.1bp) .. (node_26); \draw [black,->] (node_3) ..controls (192.75bp,601.1bp) and (260.63bp,615.93bp) .. (node_15); \draw [black,->] (node_0) ..controls (194.89bp,221.7bp) and (218.18bp,234.79bp) .. (node_1); \draw [black,->] (node_4) ..controls (274.25bp,547.1bp) and (206.37bp,561.93bp) .. (node_3); \draw [black,->] (node_2) ..controls (152.26bp,654.5bp) and (183.16bp,668.0bp) .. (node_14); \draw [black,->] (node_6) ..controls (271.93bp,493.1bp) and (203.76bp,507.93bp) .. (node_5); \draw [black,->] (node_4) ..controls (352.5bp,544.95bp) and (352.5bp,554.97bp) .. (node_16); \draw [black,->] (node_20) ..controls (140.5bp,120.71bp) and (140.5bp,130.98bp) .. (node_18); \draw [black,->] (node_14) ..controls (233.5bp,706.95bp) and (233.5bp,716.97bp) .. (node_12); % \end{tikzpicture}
Error in lines 1-1 Traceback (most recent call last): File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_server.py", line 995, in execute exec compile(block+'\n', '', 'single') in namespace, locals File "", line 1, in <module> File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_server.py", line 1034, in execute_with_code_decorators print code_decorator.eval(code, locals=self.namespace), File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_salvus.py", line 1467, in latex0 sage.misc.latex.Latex.eval(sage.misc.latex.latex, s, **kwds) File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/sage/misc/latex.py", line 1130, in eval os.path.join(orig_base, filename + ".png")) File "/projects/sage/sage-7.6/local/lib/python/shutil.py", line 119, in copy copyfile(src, dst) File "/projects/sage/sage-7.6/local/lib/python/shutil.py", line 82, in copyfile with open(src, 'rb') as fsrc: IOError: [Errno 2] No such file or directory: '/projects/d97ca4df-6ebd-46ab-b7fb-40461f0f84e0/.sage/temp/compute2-us/11056/dir_rhlr3d/tmpZqIlQF.png'
latex.eval(fix_basis_latex(nRP))
Error in lines 1-1 Traceback (most recent call last): File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_server.py", line 995, in execute exec compile(block+'\n', '', 'single') in namespace, locals File "", line 1, in <module> File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/smc_sagews/sage_salvus.py", line 1467, in latex0 sage.misc.latex.Latex.eval(sage.misc.latex.latex, s, **kwds) File "/projects/sage/sage-7.6/local/lib/python2.7/site-packages/sage/misc/latex.py", line 1130, in eval os.path.join(orig_base, filename + ".png")) File "/projects/sage/sage-7.6/local/lib/python/shutil.py", line 119, in copy copyfile(src, dst) File "/projects/sage/sage-7.6/local/lib/python/shutil.py", line 82, in copyfile with open(src, 'rb') as fsrc: IOError: [Errno 2] No such file or directory: '/projects/d97ca4df-6ebd-46ab-b7fb-40461f0f84e0/.sage/temp/compute2-us/11056/dir_xPtH0a/tmpmtWZyd.png'
var('a') assume('a', a >= 1) assume('a', "integer") v = a*FW[6].to_vector() + (-2*a-8)*FW[7].to_vector() + AS.rho().to_vector() v
a (0, 1, 2, 3, a + 4, -a - 3, -9/2, 9/2)