Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openscenario1-engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse openpass
openscenario1-engine
Merge requests
!230
Support for distributions definitions encoded as JSON strings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Support for distributions definitions encoded as JSON strings
feature/property-distributions
into
main
Overview
32
Commits
6
Pipelines
13
Changes
45
Merged
René Paris
requested to merge
feature/property-distributions
into
main
3 months ago
Overview
10
Commits
6
Pipelines
13
Changes
45
Expand
0
0
Merge request reports
Compare
main
version 16
5775ccb6
2 weeks ago
version 15
be4a2848
2 weeks ago
version 14
06378f90
2 weeks ago
version 13
7078c7e0
4 weeks ago
version 12
1e325b68
4 weeks ago
version 11
8fac4841
1 month ago
version 10
d44fe329
1 month ago
version 9
9720771b
1 month ago
version 8
ab034282
2 months ago
version 7
037cb8db
2 months ago
version 6
199ce190
3 months ago
version 5
87c53c46
3 months ago
version 4
96c19d6e
3 months ago
version 3
169fa2d4
3 months ago
version 2
49387d8f
3 months ago
version 1
814fbb72
3 months ago
main (base)
and
latest version
latest version
32c17e81
6 commits,
1 week ago
version 16
5775ccb6
7 commits,
2 weeks ago
version 15
be4a2848
6 commits,
2 weeks ago
version 14
06378f90
6 commits,
2 weeks ago
version 13
7078c7e0
5 commits,
4 weeks ago
version 12
1e325b68
5 commits,
4 weeks ago
version 11
8fac4841
4 commits,
1 month ago
version 10
d44fe329
3 commits,
1 month ago
version 9
9720771b
3 commits,
1 month ago
version 8
ab034282
4 commits,
2 months ago
version 7
037cb8db
3 commits,
2 months ago
version 6
199ce190
3 commits,
3 months ago
version 5
87c53c46
3 commits,
3 months ago
version 4
96c19d6e
2 commits,
3 months ago
version 3
169fa2d4
2 commits,
3 months ago
version 2
49387d8f
5 commits,
3 months ago
version 1
814fbb72
2 commits,
3 months ago
45 files
+
1646
−
62
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
45
Search (e.g. *.vue) (Ctrl+P)
doc/json_properties/exponential_distribution.json
0 → 100644
+
20
−
0
Options
{
"$schema"
:
"http://json-schema.org/draft-07/schema#"
,
"title"
:
"ExponentialDistribution"
,
"type"
:
"object"
,
"properties"
:
{
"lowerLimit"
:
{
"type"
:
"number"
,
"description"
:
"Lower limit"
},
"upperLimit"
:
{
"type"
:
"number"
,
"description"
:
"Upper limit"
},
"expectedValue"
:
{
"type"
:
"number"
,
"description"
:
"Reciprocal of the rate parameter lambda"
}
},
"required"
:
[
"lowerLimit"
,
"upperLimit"
,
"expectedValue"
]
}
\ No newline at end of file
Loading