gl-rack-classification
GAP programs for tabulating generalized Legendrian racks (also called GL-racks or bi-Legendrian racks) up to order 11. Data for all GL-racks up to order 8.
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.5%) to scientific vocabulary
Keywords
algebra
algebraic-structures
contact-geometry
exhaustive-search
knot-theory
legendrian-knots
low-dimensional-topology
math
mathematics
quandle
rack
topology
Last synced: 4 months ago
·
JSON representation
·
Repository
GAP programs for tabulating generalized Legendrian racks (also called GL-racks or bi-Legendrian racks) up to order 11. Data for all GL-racks up to order 8.
Basic Info
- Host: GitHub
- Owner: luc-ta
- Default Branch: main
- Homepage: https://arxiv.org/abs/2504.12671
- Size: 10.9 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
algebra
algebraic-structures
contact-geometry
exhaustive-search
knot-theory
legendrian-knots
low-dimensional-topology
math
mathematics
quandle
rack
topology
Created 10 months ago
· Last pushed 5 months ago
Metadata Files
Readme
Citation
readme.txt
#====================================================================
# Library of all GL-racks of order 1 to 8 up to isomorphism
# Compiled by Lực Ta
# Based on the rack library of Petr Vojtěchovský and Seung Yeop Yang at
# https://www.cs.du.edu/~petr/libraries_of_algebraic_structures.html
# For more information, see the following papers:
# https://arxiv.org/abs/2504.12671
# https://arxiv.org/abs/2505.08090
#====================================================================
#====================================================================
# INSTALLATION AND USAGE:
# 1) copy the data files
# GL_racks_of_order_n.txt (for n in [1..13])
# into some folder.
# 2) replace 'path' below with a path to the folder containing
# the above files (should end with /)
# 3) start GAP
# 4) read this file into GAP
# 5) to construct the kth GL-rack of order n, call
# GLR.Rack(n, k);
# to display it in the form (R, u, d), where R is a list of
# length n, and R[i] = s_i for all 1 \leq i \leq n
# 6) to search for all GL-racks of order n, 1) download and set up the
# library of Vojtěchovský and Yang, 2) change n and k to the
# appropriate quantities in gl-rack-tester.txt (n = rack order,
# k = number of racks of order n, and 3) run
# ReadAsFunction(Concatenation(GLR.path, "gl-rack-tester.txt"))();
# 7) to search for GL-quandles and medial GL-racks of order n, 1) change
# n and k to the appropriate quantities in gl-quandle-medial-tester.txt
# and 2) run
# ReadAsFunction(Concatenation(GLR.path, "gl-quandle-medial-tester.txt"))();
# 8) to compare R-coloring numbers for two Legendrian knots, 1)
# duplicate one of the sample coloring files in the same folder
# as the above files, 2) in that file, set local variables
# y1, ..., ym where m is the maximum over the number of strands
# between the two front projections and change n, k1, and k2
# depending on which/how many GL-racks you'd like to test,
# 3) replace the sample crossing relations with those of the
# two front projections, and 4) run
# ReadAsFunction(Concatenation(GLR.path, "name.txt"))();
# where 'name' is the name of the file you created
# 9) to view the numbers of GL-racks of each order, see enumeration.xlsx
#====================================================================
# global variable holding all data, methods, etc., for the library
GLR := rec();
# replace 'path' with a path to the folder containing data files (should end with /)
GLR.path := "path";
GLR.Rack := function(n, k)
local localRacks;
localRacks:=ReadAsFunction(Concatenation(GLR.path, "GL_racks_of_order_", String(n), ".txt"))();
return localRacks[k];
end;
Owner
- Name: Luc Ta
- Login: luc-ta
- Kind: user
- Repositories: 1
- Profile: https://github.com/luc-ta
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use this software, please cite it as below." authors: - family-names: "Ta" given-names: "Lực" orcid: "https://orcid.org/0009-0008-6824-186X" title: "GL Rack Classification" version: 1.0.0 date-released: 2025-3-17 url: "https://github.com/luc-ta/GL-Rack-Classification"
GitHub Events
Total
- Push event: 7
- Public event: 1
Last Year
- Push event: 7
- Public event: 1