Skip to content

Commit

Permalink
use χ instead of x for canonical construction
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiberthold committed Sep 25, 2023
1 parent 908604e commit c634663
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def apply(extension_set: Set) -> ABAF:
rules = abaf_adm_star.rules
for ext_a, ext_b in aux.tuples(aux.reduce(extension_set).difference(frozenset())):
for a in aux.unique_big_c(frozenset(set(ext_a).union(set(ext_b))), aux.reduce(extension_set)):
x_a_c = 'x_' + a + '_c'
x_a_c = 'χ_' + a + '_c'
rules.add(Rule('', set(ext_a).union(set(ext_b)), x_a_c))

return ABAF(assumptions, rules, language, contraries)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def apply(extension_set: Set) -> ABAF:
language.add(a_c)
contraries[a] = a_c

x_a = 'x_' + a
x_a_c = 'x_' + a + '_c'
x_a = 'χ_' + a
x_a_c = 'χ_' + a + '_c'
new_assumptions.add(x_a)
language.add(x_a)
language.add(x_a_c)
Expand Down

0 comments on commit c634663

Please sign in to comment.