diff --git a/README.md b/README.md index 6bd8236d..69f4272e 100644 --- a/README.md +++ b/README.md @@ -64,4 +64,8 @@ tspan=collect(0:0.001:5) And if you plot the result, you can see the result of the fractional differential equation: -![Example](/docs/src/assets/simple_example.png) \ No newline at end of file +![Example](/docs/src/assets/simple_example.png) + +## Contributing + +If you are interested in Fractional Differential Equations and Julia, welcome to raise an issue or file a Pull Request!! \ No newline at end of file diff --git a/docs/Manifest.toml b/docs/Manifest.toml deleted file mode 100644 index 1cb6f59a..00000000 --- a/docs/Manifest.toml +++ /dev/null @@ -1,97 +0,0 @@ -# This file is machine-generated - editing it directly is not advised - -[[ANSIColoredPrinters]] -git-tree-sha1 = "574baf8110975760d391c710b6341da1afa48d8c" -uuid = "a4c015fc-c6ff-483c-b24f-f7ea428134e9" -version = "0.0.1" - -[[Base64]] -uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" - -[[Dates]] -deps = ["Printf"] -uuid = "ade2ca70-3891-5945-98fb-dc099432e06a" - -[[DocStringExtensions]] -deps = ["LibGit2"] -git-tree-sha1 = "a32185f5428d3986f47c2ab78b1f216d5e6cc96f" -uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" -version = "0.8.5" - -[[Documenter]] -deps = ["ANSIColoredPrinters", "Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"] -git-tree-sha1 = "f425293f7e0acaf9144de6d731772de156676233" -uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4" -version = "0.27.10" - -[[FractionalDiffEq]] -path = ".." -uuid = "c7492dd8-6170-483b-af64-cefb6c377d9a" -version = "0.1.0" - -[[IOCapture]] -deps = ["Logging", "Random"] -git-tree-sha1 = "f7be53659ab06ddc986428d3a9dcc95f6fa6705a" -uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89" -version = "0.2.2" - -[[InteractiveUtils]] -deps = ["Markdown"] -uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240" - -[[JSON]] -deps = ["Dates", "Mmap", "Parsers", "Unicode"] -git-tree-sha1 = "8076680b162ada2a031f707ac7b4953e30667a37" -uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" -version = "0.21.2" - -[[LibGit2]] -deps = ["Base64", "NetworkOptions", "Printf", "SHA"] -uuid = "76f85450-5226-5b5a-8eaa-529ad045b433" - -[[Logging]] -uuid = "56ddb016-857b-54e1-b83d-db4d58db5568" - -[[Markdown]] -deps = ["Base64"] -uuid = "d6f4376e-aef5-505a-96c1-9c027394607a" - -[[Mmap]] -uuid = "a63ad114-7e13-5084-954f-fe012c677804" - -[[NetworkOptions]] -uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908" - -[[Parsers]] -deps = ["Dates"] -git-tree-sha1 = "f19e978f81eca5fd7620650d7dbea58f825802ee" -uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0" -version = "2.1.0" - -[[Printf]] -deps = ["Unicode"] -uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7" - -[[REPL]] -deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"] -uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb" - -[[Random]] -deps = ["Serialization"] -uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" - -[[SHA]] -uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce" - -[[Serialization]] -uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b" - -[[Sockets]] -uuid = "6462fe0b-24de-5631-8697-dd941f90decc" - -[[Test]] -deps = ["InteractiveUtils", "Logging", "Random", "Serialization"] -uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" - -[[Unicode]] -uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" diff --git a/docs/make.jl b/docs/make.jl index 75838d88..04933aef 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -15,7 +15,8 @@ makedocs(; ), pages=[ "Home" => "index.md", - "Example" => "example/example.md" + "Example" => "example/example.md", + "FractionalDiffEq APIs" => "APIs.md" ], ) diff --git a/docs/src/API.md b/docs/src/APIs.md similarity index 100% rename from docs/src/API.md rename to docs/src/APIs.md diff --git a/test/test.jl b/test/test.jl index 9098f075..277dd8ca 100644 --- a/test/test.jl +++ b/test/test.jl @@ -2,7 +2,6 @@ using FractionalDiffEq using Test - @testset "Test Diethelm algorithms" begin fun(x, y) = 1-y result=solve(fun, 0.75, 0, 1, 0.01)