Skip to content

Commit

Permalink
fishing for non-trivial embeddings
Browse files Browse the repository at this point in the history
  • Loading branch information
egri-nagy committed Feb 11, 2024
1 parent e00918f commit 4b45e2a
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions experiments/DIAGSGPS/Dn_into_Dm_gentab.clj
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,26 @@
[[m n] r]))
pairs)))

(binding [orbit.extension/*task-size* 1]
(def result (Dn-into-Dm t/full-ts-gens 3 8)))
;(binding [orbit.extension/*task-size* 1]
(def result (Dn-into-Dm t/full-ts-gens 3 6))
; )

(defn involved
"all the points that are involved in the transformation"
[t]
(reduce (fn [result [src img]]
(if-not (= src img)
(conj result img)
result))
#{}
(map vector (range) t)))

(println (count result))

;(pprint result)
(pprint (filter (fn [m]
(let [ invd (into #{}
(map involved (vals m)))]
(= (count (first (vals m)))
(count invd))))
result))

0 comments on commit 4b45e2a

Please sign in to comment.