Skip to content

Commit

Permalink
Clean up imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed Dec 15, 2020
1 parent d1668dc commit b7219de
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
name = "RungeKutta"
uuid = "fb486d5c-30a0-4a8a-8415-a8b4ace5a6f7"
authors = ["Michael Kraus"]
version = "0.2.0"
version = "0.2.1"

[deps]
GenericLinearAlgebra = "14197337-ba66-59df-a3e3-ca00e7dcff7a"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
SpecialPolynomials = "a25cea48-d430-424a-8ee7-0d3ad3742e9e"

[compat]
Polynomials = "^1.1.13"
GenericLinearAlgebra = "0.2"
Polynomials = "1"
PrettyTables = "0.10"
SpecialPolynomials = "0.1"
julia = "^1.4"
Expand Down
4 changes: 4 additions & 0 deletions src/RungeKutta.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
module RungeKutta

import GenericLinearAlgebra
import Polynomials
import Polynomials: Polynomial

include("utils.jl")

include("tableau.jl")
Expand Down
4 changes: 3 additions & 1 deletion src/tableau.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@

using LinearAlgebra
using Markdown
using PrettyTables

import LinearAlgebra: istril


@doc raw"""
Holds the tableau of a Runge-Kutta method.
Expand Down
2 changes: 0 additions & 2 deletions src/tableaus/gauss.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@

import Polynomials
import Polynomials: Polynomial
import SpecialPolynomials: ShiftedLegendre


Expand Down
2 changes: 0 additions & 2 deletions src/tableaus/lobatto.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@

import LinearAlgebra: factorial
import Polynomials
import Polynomials: Polynomial


@doc raw"""
Expand Down
4 changes: 0 additions & 4 deletions src/tableaus/radau.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@

import Polynomials
import Polynomials: Polynomial


@doc raw"""
The s-stage Radau IA nodes are defined as the roots of the following polynomial of degree $s$:
```math
Expand Down

2 comments on commit b7219de

@michakraus
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/26399

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.1 -m "<description of version>" b7219ded8b13428b7add63d4d0e5ed6b001d91a0
git push origin v0.2.1

Please sign in to comment.