-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
183 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,7 +126,7 @@ _For a detailed documentation of the dict file format used by dictIO, see [File | |
## Meta | ||
Copyright (c) 2023 [DNV](https://www.dnv.com) [open source](https://github.com/dnv-opensource) | ||
Copyright (c) 2024 [DNV](https://www.dnv.com) [open source](https://github.com/dnv-opensource) | ||
Frank Lumpitzsch – [@LinkedIn](https://www.linkedin.com/in/frank-lumpitzsch-23013196/) – [email protected] | ||
|
@@ -151,4 +151,4 @@ For your contribution, please make sure you follow the [STYLEGUIDE](STYLEGUIDE.m | |
<!-- Markdown link & img dfn's --> | ||
[dictIO_docs]: https://dnv-opensource.github.io/dictIO/README.html | ||
[ospx_docs]: https://dnv-opensource.github.io/ospx/README.html | ||
[farn_docs]: https://dnv-opensource.github.io/farn/README.html | ||
[farn_docs]: https://dnv-opensource.github.io/farn/README.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/*---------------------------------*- C++ -*----------------------------------*\ | ||
filetype dictionary; coding utf-8; version 0.1; local --; purpose --; | ||
\*----------------------------------------------------------------------------*/ | ||
|
||
#include 'test_single_character_vars_paramDict' | ||
|
||
a 1.0; | ||
b true; | ||
|
||
n (0 1 2 3); | ||
m (Alice and Bob fail the "paragliding contest"); | ||
|
||
c | ||
{ | ||
d 4.0; | ||
e false; | ||
f $x; | ||
g $y; | ||
h $h; | ||
i $i; | ||
} | ||
|
||
j $z; | ||
k $k; | ||
|
||
u $n[3]; | ||
v $m[0]; | ||
w $m[5]; | ||
ww "$m[0]$m[1]$m[2]$m[3]$m[4]$m[5]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/*---------------------------------*- C++ -*----------------------------------*\ | ||
filetype dictionary; coding utf-8; version 0.1; local --; purpose --; | ||
\*----------------------------------------------------------------------------*/ | ||
|
||
a -1.0; | ||
b false; | ||
x 6.0; | ||
y true; | ||
h 8.0; | ||
i false; | ||
z 10.0; | ||
k 12.0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters