Skip to content

Commit 6c93705

Browse files
committed
Added a reference to the GPL license to all .py files
1 parent c9dbcbc commit 6c93705

File tree

7 files changed

+54
-18
lines changed

7 files changed

+54
-18
lines changed

Code/GCMMA_BEAM.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
########################################################################################################
2-
### MMA OPTIMIZATION ALGORITM ###
2+
### GCMMA-MMA-Python ###
33
### ###
4-
### Arjen Deetman ###
4+
### This file is part of GCMMA-MMA-Python. GCMMA-MMA-Python is licensed under the terms of GNU ###
5+
### General Public License as published by the Free Software Foundation. For more information and ###
6+
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
7+
### ###
8+
### The orginal work is written by Krister Svanberg in MATLAB. ###
9+
### This is the python version of the code written Arjen Deetman. ###
510
### version 09-11-2019 ###
611
########################################################################################################
712

813
"""
9-
Orginal work Written by Krister Svanberg in Matlab. This is the python version of the code written
14+
Orginal work written by Krister Svanberg in Matlab. This is the python version of the code written
1015
by Arjen Deetman.
1116
1217
This script is the "beam problem" from the MMA paper of Krister Svanberg.

Code/MMA.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
########################################################################################################
2-
### MMA OPTIMIZATION ALGORITM ###
2+
### GCMMA-MMA-Python ###
33
### ###
4-
### Arjen Deetman ###
4+
### This file is part of GCMMA-MMA-Python. GCMMA-MMA-Python is licensed under the terms of GNU ###
5+
### General Public License as published by the Free Software Foundation. For more information and ###
6+
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
7+
### ###
8+
### The orginal work is written by Krister Svanberg in MATLAB. ###
9+
### This is the python version of the code written Arjen Deetman. ###
510
### version 09-11-2019 ###
611
########################################################################################################
712

813
"""
9-
Orginal work Written by Krister Svanberg in Matlab. This is the python version of the code written
14+
Orginal work written by Krister Svanberg in Matlab. This is the python version of the code written
1015
by Arjen Deetman.
1116
1217
This file gives the functions mmasub, gcmmasub, subsolv and kktcheck.

Code/MMA_BEAM2.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
########################################################################################################
2-
### MMA OPTIMIZATION ALGORITM ###
2+
### GCMMA-MMA-Python ###
33
### ###
4-
### Arjen Deetman ###
4+
### This file is part of GCMMA-MMA-Python. GCMMA-MMA-Python is licensed under the terms of GNU ###
5+
### General Public License as published by the Free Software Foundation. For more information and ###
6+
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
7+
### ###
8+
### The orginal work is written by Krister Svanberg in MATLAB. ###
9+
### This is the python version of the code written Arjen Deetman. ###
510
### version 09-11-2019 ###
611
########################################################################################################
712

Code/MMA_FUNCTION.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
########################################################################################################
2-
### MMA OPTIMIZATION ALGORITM ###
2+
### GCMMA-MMA-Python ###
33
### ###
4-
### Arjen Deetman ###
4+
### This file is part of GCMMA-MMA-Python. GCMMA-MMA-Python is licensed under the terms of GNU ###
5+
### General Public License as published by the Free Software Foundation. For more information and ###
6+
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
7+
### ###
8+
### The orginal work is written by Krister Svanberg in MATLAB. ###
9+
### This is the python version of the code written Arjen Deetman. ###
510
### version 09-11-2019 ###
611
########################################################################################################
712

Code/MMA_FUNCTION2.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
########################################################################################################
2-
### MMA OPTIMIZATION ALGORITM ###
2+
### GCMMA-MMA-Python ###
33
### ###
4-
### Arjen Deetman ###
4+
### This file is part of GCMMA-MMA-Python. GCMMA-MMA-Python is licensed under the terms of GNU ###
5+
### General Public License as published by the Free Software Foundation. For more information and ###
6+
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
7+
### ###
8+
### The orginal work is written by Krister Svanberg in MATLAB. ###
9+
### This is the python version of the code written Arjen Deetman. ###
510
### version 09-11-2019 ###
611
########################################################################################################
712

Code/MMA_TOY2.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
########################################################################################################
2-
### MMA OPTIMIZATION ALGORITM ###
2+
### GCMMA-MMA-Python ###
33
### ###
4-
### Arjen Deetman ###
4+
### This file is part of GCMMA-MMA-Python. GCMMA-MMA-Python is licensed under the terms of GNU ###
5+
### General Public License as published by the Free Software Foundation. For more information and ###
6+
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
7+
### ###
8+
### The orginal work is written by Krister Svanberg in MATLAB. ###
9+
### This is the python version of the code written Arjen Deetman. ###
510
### version 09-11-2019 ###
611
########################################################################################################
712

813
"""
9-
Orginal work Written by Krister Svanberg in Matlab. This is the python version of the code written
14+
Orginal work written by Krister Svanberg in Matlab. This is the python version of the code written
1015
by Arjen Deetman.
1116
1217
This script is the "toy problem":

Code/MMA_TRUSS2.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
########################################################################################################
2-
### MMA OPTIMIZATION ALGORITM ###
2+
### GCMMA-MMA-Python ###
33
### ###
4-
### Arjen Deetman ###
4+
### This file is part of GCMMA-MMA-Python. GCMMA-MMA-Python is licensed under the terms of GNU ###
5+
### General Public License as published by the Free Software Foundation. For more information and ###
6+
### the LICENSE file, see <https://github.com/arjendeetman/GCMMA-MMA-Python>. ###
7+
### ###
8+
### The orginal work is written by Krister Svanberg in MATLAB. ###
9+
### This is the python version of the code written Arjen Deetman. ###
510
### version 09-11-2019 ###
611
########################################################################################################
712

13+
814
"""
9-
Orginal work Written by Krister Svanberg in Matlab. This is the python version of the code written
15+
Orginal work written by Krister Svanberg in Matlab. This is the python version of the code written
1016
by Arjen Deetman.
1117
1218
This script is the "three bar truss problem":

0 commit comments

Comments
 (0)