Skip to content

Commit

Permalink
add LICENSE environment.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mammatus95 committed Apr 24, 2024
1 parent 9ad9bdc commit 0b13074
Show file tree
Hide file tree
Showing 12 changed files with 53 additions and 15 deletions.
1 change: 1 addition & 0 deletions .github/workflows/c-check.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: C-Check
on:
push:
branches: [main]
Expand Down
11 changes: 6 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# ignore ALL .log files

.ipynb_checkpoints/
*/.ipynb_checkpoints/
*/*/.ipynb_checkpoints/
**.ipynb_checkpoints/
**/__pycache__

*.txt
*/*.txt
**.txt

**.png
**.svg
4 changes: 2 additions & 2 deletions Ableitungsmatrix.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -227,7 +227,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.3"
"version": "3.11.5"
}
},
"nbformat": 4,
Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Morten Kretschmer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 3 additions & 3 deletions Attractors.ipynb → Other Attractors.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
Expand All @@ -270,9 +270,9 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.11.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
"nbformat_minor": 4
}
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Lorenz

![Example](lorenz_rk.png)

![Example](lorenz_euler.png)

# Compile
## Compile

```bash
gcc -o lorenz lorenz.c
```

## Example

![Example](example/lorenz_rk.png)

![Example](example/lorenz_euler.png)


9 changes: 9 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: lorenz
channels:
- conda-forge
dependencies:
- python=3.11
- numpy
- matplotlib
- pyyaml
- nose2=0.9.2
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added test/.coverage
Binary file not shown.
2 changes: 2 additions & 0 deletions test/nose2.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[coverage]
always-on = True

0 comments on commit 0b13074

Please sign in to comment.