Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions vendor/ego/lib/ego.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
(*
This file includes modified code from the Ego project
(https://github.com/verse-lab/ego),
which is licensed under the GNU General Public License v3.0.

Modifications © 2025 Migyu Jo.
See LICENSE.GPL for full license text.
*)
module Id = Id
module Basic = Basic
module Generic = struct
Expand Down
8 changes: 8 additions & 0 deletions vendor/ego/lib/equivalence.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
(*
This file includes modified code from the Ego project
(https://github.com/verse-lab/ego),
which is licensed under the GNU General Public License v3.0.

Modifications © 2025 Migyu Jo.
See LICENSE.GPL for full license text.
*)
open Containers
(* module IntMap = Map.Make (Int) *)
module IntMap = Hashtbl.Make (Int)
Expand Down
8 changes: 8 additions & 0 deletions vendor/ego/lib/generic.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
(*
This file includes modified code from the Ego project
(https://github.com/verse-lab/ego),
which is licensed under the GNU General Public License v3.0.

Modifications © 2025 Migyu Jo.
See LICENSE.GPL for full license text.
*)
open [@warning "-33"] Containers
open Language
open Types
Expand Down
8 changes: 8 additions & 0 deletions vendor/ego/lib/generic.mli
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
(*
This file includes modified code from the Ego project
(https://github.com/verse-lab/ego),
which is licensed under the GNU General Public License v3.0.

Modifications © 2025 Migyu Jo.
See LICENSE.GPL for full license text.
*)
open Language

type ('node, 'data) eclass = {
Expand Down
8 changes: 8 additions & 0 deletions vendor/ego/lib/language.ml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
(*
This file includes modified code from the Ego project
(https://github.com/verse-lab/ego),
which is licensed under the GNU General Public License v3.0.

Modifications © 2025 Migyu Jo.
See LICENSE.GPL for full license text.
*)
open Containers
module StringSet = Set.Make(String)
module StringMap = Stdlib.Map.Make(String)
Expand Down
Loading