From b070f6606ecf9f27379cca299d996a737ec5fcda Mon Sep 17 00:00:00 2001 From: Shreya Pawaskar Date: Fri, 4 Jul 2025 07:43:15 +0000 Subject: [PATCH 1/5] header fix --- julia_set/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/julia_set/README.md b/julia_set/README.md index f625f49..a7f7ca9 100644 --- a/julia_set/README.md +++ b/julia_set/README.md @@ -1,4 +1,4 @@ -** Fun fact about Julia Sets: ** +**Fun fact about Julia Sets:** They are a type of Fractals that emerges from iterating polynomial functions in the complex plane. Julia sets are named after the French mathematician Gaston Julia, who studied their properties in the early 20th century. From 3ef7d4f53952e427ce8ffbd20f84965af8a9985b Mon Sep 17 00:00:00 2001 From: Shreya Pawaskar Date: Mon, 7 Jul 2025 16:13:53 +0000 Subject: [PATCH 2/5] dune-project update --- julia_set/dune-project | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/julia_set/dune-project b/julia_set/dune-project index ef83e2c..ce9a374 100644 --- a/julia_set/dune-project +++ b/julia_set/dune-project @@ -5,15 +5,15 @@ (generate_opam_files true) (source - (github mdales/claudius)) + (github ClaudiusFX/claudius)) -(authors "Michael Dales ") +(authors "Michael Dales " "Shreya Pawaskar ") -(maintainers "Michael Dales ") +(maintainers "Michael Dales " "Shreya Pawaskar ") (license ICS) -(documentation https://url/to/documentation) +(documentation https://github.com/claudiusFX/claudius-examples/tree/main/julia_set) (package (name julia_set) From 1dcedf9a812a109e45b1e8ba1da409ffa7444251 Mon Sep 17 00:00:00 2001 From: Shreya Pawaskar Date: Wed, 9 Jul 2025 11:23:40 +0000 Subject: [PATCH 3/5] renamed day3 to tcc3 --- tcc3extra/test/{test_day3extra.ml => test_tcc3extra.ml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tcc3extra/test/{test_day3extra.ml => test_tcc3extra.ml} (100%) diff --git a/tcc3extra/test/test_day3extra.ml b/tcc3extra/test/test_tcc3extra.ml similarity index 100% rename from tcc3extra/test/test_day3extra.ml rename to tcc3extra/test/test_tcc3extra.ml From 0c0999827e14b135c09fe27e6a8390951157df43 Mon Sep 17 00:00:00 2001 From: Shreya Pawaskar Date: Wed, 9 Jul 2025 11:32:01 +0000 Subject: [PATCH 4/5] modified opam --- julia_set/julia_set.opam | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/julia_set/julia_set.opam b/julia_set/julia_set.opam index 74e548e..73f4517 100644 --- a/julia_set/julia_set.opam +++ b/julia_set/julia_set.opam @@ -3,13 +3,19 @@ opam-version: "2.0" synopsis: "An example on Julia Set" description: "Julia Sets are intricate fractal shapes that arise from iterating a simple mathematical formula in the complex plane." -maintainer: ["Michael Dales "] -authors: ["Michael Dales "] +maintainer: [ + "Michael Dales " + "Shreya Pawaskar " +] +authors: [ + "Michael Dales " + "Shreya Pawaskar " +] license: "ICS" tags: ["graphics" "rendering" "paletted"] -homepage: "https://github.com/mdales/claudius" -doc: "https://url/to/documentation" -bug-reports: "https://github.com/mdales/claudius/issues" +homepage: "https://github.com/ClaudiusFX/claudius" +doc: "https://github.com/claudiusFX/claudius-examples/tree/main/julia_set" +bug-reports: "https://github.com/ClaudiusFX/claudius/issues" depends: [ "ocaml" "dune" {>= "3.12"} @@ -29,4 +35,4 @@ build: [ "@doc" {with-doc} ] ] -dev-repo: "git+https://github.com/mdales/claudius.git" +dev-repo: "git+https://github.com/ClaudiusFX/claudius.git" From b28bc7d71b56eef0a77f460e2bf09ad3b8066ab8 Mon Sep 17 00:00:00 2001 From: Shreya Pawaskar Date: Wed, 9 Jul 2025 11:39:29 +0000 Subject: [PATCH 5/5] test dune tcc3extra modified --- tcc3extra/test/dune | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcc3extra/test/dune b/tcc3extra/test/dune index 94f6a29..5a1fced 100644 --- a/tcc3extra/test/dune +++ b/tcc3extra/test/dune @@ -1,2 +1,2 @@ (test - (name test_day3extra)) + (name test_tcc3extra))