-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from AkchurinDA/CleanSlate
- Loading branch information
Showing
57 changed files
with
1,583 additions
and
2,750 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
name = "Hephaestus" | ||
uuid = "88b3b2ed-56ea-4eac-b1de-e42ac45953c8" | ||
uuid = "5a5f24ea-65ec-4eaa-a0a3-a7b98033aea7" | ||
authors = ["Damir Akchurin <[email protected]>"] | ||
version = "0.1.0" | ||
|
||
[deps] | ||
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
Memoization = "6fafb56a-5788-4b4e-91ca-c0cea6611c73" | ||
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||
StyledStrings = "f489334b-da3d-4c2e-b8f0-e476e12c162b" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[weakdeps] | ||
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" | ||
|
@@ -17,10 +18,18 @@ Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" | |
HephaestusMakieExtension = "Makie" | ||
|
||
[compat] | ||
Dates = "1.11.0" | ||
DocStringExtensions = "0.9.3" | ||
LinearAlgebra = "1.11.0" | ||
Makie = "0.21" | ||
OrderedCollections = "1.6.3" | ||
StyledStrings = "1.11.0, 1" | ||
Test = "1.11.0" | ||
julia = "1.10.0" | ||
Memoization = "0.2.2" | ||
Printf = "1.11.0" | ||
StyledStrings = "1.11.0" | ||
|
||
[extras] | ||
DifferentiationInterface = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63" | ||
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" | ||
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["Test", "DifferentiationInterface", "ForwardDiff", "ReverseDiff"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
[deps] | ||
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
DocumenterCitations = "daee34ce-89f3-4625-b898-19384cb65244" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,29 +2,13 @@ push!(LOAD_PATH, "../src/") | |
|
||
using Hephaestus | ||
using Documenter | ||
using DocumenterCitations | ||
|
||
makedocs( | ||
sitename = "Hephaestus.jl", | ||
authors = "Damir Akchurin, [email protected]", | ||
pages = [ | ||
"Home" => "index.md", | ||
"Quick Start" => "QuickStart.md", | ||
"Theoretical Background" => [ | ||
"Bisymmetric Framework Element Formulation" => "BisymmetricFrameworkElementFormulation.md", | ||
"Coordinate Transformation" => "CoordinateTransformation.md", | ||
"Analyses Types" => "AnalysesTypes.md" | ||
], | ||
"API" => "API.md"], | ||
format = Documenter.HTML( | ||
assets = [ | ||
"assets/favicon.ico", | ||
"assets/Citations.css", | ||
"assets/Custom.css"]), | ||
plugins = [ | ||
CitationBibliography( | ||
joinpath(@__DIR__, "src", "References.bib"), | ||
style = :numeric)]) | ||
authors = "Damir Akchurin", | ||
pages = [ | ||
"Home" => "index.md", | ||
"API" => "API.md"]) | ||
|
||
deploydocs( | ||
repo = "github.com/AkchurinDA/Hephaestus.jl") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.