Skip to content

Commit

Permalink
TL: changed markdown links to be consistents (path in site to fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlunet committed Jul 19, 2023
1 parent 48d9b34 commit 6164699
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ In addition to this code, a website framework is provided to allow building of *
that uses the [blockops] code for specific application and experiments. Currently, the website is available at
https://jupyterhub.mat.tu-harburg.de/blockops/, and here is the current list of WebApp paths :

- [Analysis of Sequential Time-Integration Methods (accuracy, order, ...)](./seqint/)
- [Performance Analysis of Scheduling Strategies for different PinT Algorithms](./schedule/)
- [Analysis of Sequential Time-Integration Methods (accuracy, order, ...)](./web_apps/seqint/index.md)
- [Performance Analysis of Scheduling Strategies for different PinT Algorithms](./web_apps/schedule/index.md)

The WebApps are currently under development : current could be improved, and other WebApp could also be added,
see the [demo WebApp](./demo/) for an example.
Expand Down
2 changes: 1 addition & 1 deletion blockops/blockIterationGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def generateBlockRule(self):


# PararealGenerator(n=6)
MultilevelGenerator(n=6, L=1, pre_smoothing=1, post_smoothing=0)
MultilevelGenerator(n=20, L=2, pre_smoothing=10, post_smoothing=0)
# MultilevelGenerator(n=6, L=3, pre_smoothing=1, post_smoothing=0)
# MultilevelGenerator(n=6, L=4, pre_smoothing=1, post_smoothing=0)
# MultilevelGenerator(n=6, L=2, pre_smoothing=2, post_smoothing=0)
Expand Down
1 change: 1 addition & 0 deletions dynamic_site/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def initialize_flask_server(self) -> None:
self.flask_app = Flask(
__name__,
static_folder=STATIC_FOLDER,
# static_url_path="",
template_folder=f"{self.dynamic_site_path}/templates",
)

Expand Down
4 changes: 2 additions & 2 deletions scripts/06_eigenSpeedup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
nPoints = 1
schemeF = 'RK4'
nStepsF = 20
schemeG = 'RK2'
nStepsG = 2
schemeG = 'FE'
nStepsG = 4
algoName = 'Parareal'


Expand Down
4 changes: 2 additions & 2 deletions web_apps/schedule/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

Quickly represent scheduling strategies and estimated speedup for :

- [Parareal](./parareal)
- [Parareal with Overlap (MGRIT-FCF)](./pararealFCF)
- [Parareal](./parareal.md)
- [Parareal with Overlap (MGRIT-FCF)](./pararealFCF.md)
2 changes: 1 addition & 1 deletion web_apps/seqint/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Currents

- [Accuracy (and stability) of general time-discretization on the Complex Plane](./accuracy)
- [Accuracy (and stability) of general time-discretization on the Complex Plane](./accuracy.md)

## Planned

Expand Down

0 comments on commit 6164699

Please sign in to comment.