You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+14
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,20 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
9
9
A note on future revisions.
10
10
Everything within a major version number should be code compatible (with the exception of experimental interfaces). The most notable example of an experimental interface is the support for multiple source inputs. The APIs to deal with this will change in future minor releases. Everything within a single minor release should be network compatible with other federates on the same minor release number. Compatibility across minor release numbers may be possible in some situations but we are not going to guarantee this as those components are subject to performance improvements and may need to be modified at some point. Patch releases will be limited to bug fixes and other improvements not impacting the public API or network compatibility. Check the [Public API](./docs/Public_API.md) for details on what is included and excluded from the public API and version stability.
11
11
12
+
## [3.5.3][] - 2024-07-08
13
+
14
+
Patch release with fixes for potential interface definitions and some compiler warnings
15
+
16
+
### Fixed
17
+
18
+
- Fixed some compiler warnings on the connector
19
+
20
+
### Added
21
+
22
+
- Added support for "potential_interface_templates" object in json configuration
23
+
- Added support for arrays of tags
24
+
- Added support for "fields" object in potential interface template definitions
25
+
12
26
## [3.5.2][] - 2024-04-08
13
27
14
28
Patch release with fixes for certain compiler builds, a fix to the test core leading to some sporadic test failures, and fixing a discrepancy in the handing of config files with the helics_apps.
Copy file name to clipboardexpand all lines: docs/developer-guide/typeConversions.md
+3
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,7 @@ There are defined conversions from all known available types to all others.
105
105
- BOOL -> (val!=0)?"1":"0"
106
106
107
107
[^1]: conversion to double is lossless only if the value actually fits in a double mantissa value.
108
+
108
109
[^2]: for a named point conversion, if the value doesn't fit in double the string translation is placed in the string field and a NaN value in the value segment to ensure no data loss.
109
110
110
111
### Conversion from String
@@ -155,7 +156,9 @@ Similar to getDoubleFromString in conversion of vectors. It will convert most re
155
156
- BOOL -> (vectorNorm(val)!=0)?"1":"0"
156
157
157
158
[^3]: vectorNorm is the sqrt of the inner product of the vector.
159
+
158
160
[^4]: vectorString is comma-separated string of the numerical values enclosed in `[]`, for example `[45.7,22.7,17.8]`. This is a JSON compatible string format.
161
+
159
162
[^5]: if the vector is a single element the NAMED_POINT translation is equivalent to a double translation.
0 commit comments