Skip to content

Commit fc924ac

Browse files
committed
Update license text
1 parent 4b8f62d commit fc924ac

9 files changed

Lines changed: 36 additions & 9 deletions

File tree

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
* text=auto
12
*.m linguist-language=MATLAB
2-
CMakeLists.txt linguist-detectable=false
3+
CMakeLists.txt linguist-detectable=false

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 cinaral
3+
Copyright (c) 2022 Cinar, A. L.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

include/rk4_solver.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* MIT License
55
*
6-
* Copyright (c) 2022 cinaral
6+
* Copyright (c) 2022 Cinar, A. L.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy of
99
* this software and associated documentation files (the "Software"), to deal in

include/rk4_solver/cum_loop.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* MIT License
55
*
6-
* Copyright (c) 2022 cinaral
6+
* Copyright (c) 2022 Cinar, A. L.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy of
99
* this software and associated documentation files (the "Software"), to deal in

include/rk4_solver/loop.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* MIT License
55
*
6-
* Copyright (c) 2022 cinaral
6+
* Copyright (c) 2022 Cinar, A. L.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy of
99
* this software and associated documentation files (the "Software"), to deal in

include/rk4_solver/step.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* MIT License
55
*
6-
* Copyright (c) 2022 cinaral
6+
* Copyright (c) 2022 Cinar, A. L.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy of
99
* this software and associated documentation files (the "Software"), to deal in

include/rk4_solver/types.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* MIT License
55
*
6-
* Copyright (c) 2022 cinaral
6+
* Copyright (c) 2022 Cinar, A. L.
77
*
88
* Permission is hereby granted, free of charge, to any person obtaining a copy of
99
* this software and associated documentation files (the "Software"), to deal in

scripts/build/clear.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ popd () {
1414
pushd "$(dirname ${BASH_SOURCE:0})"
1515
trap popd EXIT #*
1616

17-
#* remove
17+
#* remove dir
1818
if [[ -d "$CLEAR_DIR" ]]; then
19-
rm -r $CLEAR_DIR
19+
rm -r -f $CLEAR_DIR
2020

2121
if [[ $? -eq 0 ]]; then
2222
echo "Removed $CLEAR_DIR"

test/test_config.hpp

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
/*
2+
* rk4_solver
3+
*
4+
* MIT License
5+
*
6+
* Copyright (c) 2022 Cinar, A. L.
7+
*
8+
* Permission is hereby granted, free of charge, to any person obtaining a copy of
9+
* this software and associated documentation files (the "Software"), to deal in
10+
* the Software without restriction, including without limitation the rights to
11+
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12+
* of the Software, and to permit persons to whom the Software is furnished to do
13+
* so, subject to the following conditions:
14+
*
15+
* The above copyright notice and this permission notice shall be included in all
16+
* copies or substantial portions of the Software.
17+
*
18+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
* SOFTWARE.
25+
*/
26+
127
#ifndef TEST_CONFIG_HPP_CINARAL_221122_1007
228
#define TEST_CONFIG_HPP_CINARAL_221122_1007
329

0 commit comments

Comments
 (0)