aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects
Commit message (Collapse)AuthorAge
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2024-01-30
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2024-01-07
|
* feat(web): toggle identifier coloringLibravatar Kristóf Marussy2024-01-03
|
* refactor(web): subtler error predicate highlightLibravatar Kristóf Marussy2024-01-03
|
* feat(web): color identifiers and nodesLibravatar Kristóf Marussy2024-01-03
| | | | | We use a palette-based coloring strategy, where each class and enum gets a color from
* refactor: matching node names in CLI and webLibravatar Kristóf Marussy2024-01-01
|
* refactor(generator): scope overridesLibravatar Kristóf Marussy2023-12-25
|
* feat: command line model generatorLibravatar Kristóf Marussy2023-12-24
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2023-12-24
|
* fix(language): unambigous reference serializationLibravatar Kristóf Marussy2023-12-24
|
* feat: solution serializerLibravatar Kristóf Marussy2023-12-24
|
* refactor(language): use file extension providerLibravatar Kristóf Marussy2023-12-22
|
* feat: state-based store for cross referencesLibravatar Kristóf Marussy2023-12-08
| | | | | | | Efficiently store cross references even if default ref(*, *): false. Uses propagation rules instead of view queries to reason about type constraints and multiplicity.
* chore: upgrade to Eclipse 2023-12Libravatar Kristóf Marussy2023-12-08
| | | | | | | Updates references to Eclipse in documentation (but IntelliJ is the preferred editor now). Also fixes incompatibilities with the Eclipse compiler.
* chore(deps): Java 21Libravatar Kristóf Marussy2023-12-03
| | | | Also bumps other dependencies.
* fix: lower multiplicity objectiveLibravatar Kristóf Marussy2023-12-01
| | | | We were spuriously counting lower multiplicity errors for non-existent objects.
* feat(langauge): validate exists and equalsLibravatar Kristóf Marussy2023-11-19
|
* feat(language): arity validationLibravatar Kristóf Marussy2023-11-19
|
* fix: upper and lower scopesLibravatar Kristóf Marussy2023-11-19
| | | | | | | | | Make sure the scope bound guides the best-first search and is always obeyed even if it can't be fully represented using the scoped partial model abstraction. For representable bounds (classes and unary predicate that are always fully knwon to be false or true in the initial model) this leads to duplicated computations.
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2023-11-19
|
* fix: contains assertionsLibravatar Kristóf Marussy2023-11-17
|
* feat(language): opposite reference validationLibravatar Kristóf Marussy2023-11-17
|
* fix: scope upper boundsLibravatar Kristóf Marussy2023-11-17
|
* refactor(language): opposite content assistLibravatar Kristóf Marussy2023-11-17
| | | | Only show references that may plausibly appear in an opposite declaration.
* feat: predicates as reference typesLibravatar Kristóf Marussy2023-11-17
| | | | | | | | | | Now unary predicates may be used as types for cross-references. This might create circular references between predicate, but no differently than when the user manually creates predicates with circular references. The reference types of containment and container references still have to be classes, because we use the class hierarchy to encode contained types.
* feat(language-ide): content assist filteringLibravatar Kristóf Marussy2023-11-17
|
* feat(language): validate unique namesLibravatar Kristóf Marussy2023-11-17
|
* feat(langugage): detect ambiguous referencesLibravatar Kristóf Marussy2023-11-17
|
* build: prepare for Maven publicationLibravatar Kristóf Marussy2023-11-17
|
* refactor: smenatics and facadesLibravatar Kristóf Marussy2023-11-03
| | | | | Also moves model metadata into language-web, since we only use it on the frontent.
* refactor(langauge-web): use generator facadesLibravatar Kristóf Marussy2023-11-03
|
* feat: model semantics facadeLibravatar Kristóf Marussy2023-11-03
|
* feat: model generator facadeLibravatar Kristóf Marussy2023-11-03
|
* refactor(interpreter): aggreagator batchingLibravatar Kristóf Marussy2023-10-26
| | | | | | | | | | | | | Optimize calls to potentially costly aggregators by only extracting the value from a stateful aggregator when it is needed by subsequent RETE nodes. This optimization only works with timeless evaluation and delete-and-rederive evaluation disabled, i.e., only for queries without any recursion. Potentially, it could also be extended to other mailboxes if needed. We replace the BehaviorChangingMailbox of ColumnAggregatorNode with a DefaultMailbox to force update batching. Batched updates only extract the value from the aggregator when it has been already updated with all received tuples.
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2023-10-19
|
* fix(frontend): contains contextual keywordLibravatar Kristóf Marussy2023-10-16
| | | | | | | Make sure contains is parsed as a contextual keyword whenever possible. The existing cut operator wasn't sufficient for this, so we also add dynamic precedence to the grammar rule.
* refactor(interpreter): communication tracker algorithmLibravatar Kristóf Marussy2023-10-15
| | | | | | | Use a faster algorithm to detect cycles in the RETE network. Only if cycles are detected fall back to the transitive closure algorithm to construct the SCCs and the reduced graph.
* refactor(interpreter): generify RepresentativeElectionAlgorithmLibravatar Kristóf Marussy2023-10-15
| | | | | Let representative election be used in places where IncSCCAlg was used with generic arguments other than Object.
* refactor(semantics): simple name creationLibravatar Kristóf Marussy2023-10-15
| | | | Use a simpler data structure for constructing simple names.
* refactor(interpreter-rete): recipe hashingLibravatar Kristóf Marussy2023-10-14
| | | | | | | | | | | | | | | | | | | | | | Use isomorphism-aware hashing to speed up RecipeRecognizer. Due to possibly cyclic (recursive) recipes, we can't recursively turn recipes into a canonical form. Recipes referring to already canonical (non-recurisve, or recursive and entirely canonicalized) recipes can be hashed, while recursive recipes in the middle of caninicalization still have to be compared more slowly by their contents. To keep the list of recipes compared by contents small, recipes are assigned a hash code whenever possible. We keep the equivalence class IDs for recipes, as there might be hash code clashes, as well as recursive recipes that only later get assigned a hash code. Also fixes a concurrency problem with equivalence class IDs by using an AtomicLong. Also reworks recipe instantiation, as now recipes might be canonicalized before they are instantiated.
* fix(query-interpreter): register Recipes packageLibravatar Kristóf Marussy2023-10-14
| | | | | Make sure we never fall back to reflective EObjectImpl instead of generated classes when comparing recipes, as the reflective version is much slower.
* feat(frontend): save in URL fragmentLibravatar Kristóf Marussy2023-09-26
|
* fix(query-interpreter): functional dependenciesLibravatar Kristóf Marussy2023-09-19
|
* fix(frontend): typo in EditorThemeLibravatar Kristóf Marussy2023-09-19
|
* fix(frontend): XState warningLibravatar Kristóf Marussy2023-09-17
| | | | Make sure we do not create conflicting transitions.
* fix(frontend): compilation on WindowsLibravatar Kristóf Marussy2023-09-17
|
* chore(deps): bump frontend dependenciesLibravatar Kristóf Marussy2023-09-17
|
* chore: remove VIATRA brandingLibravatar Kristóf Marussy2023-09-16
| | | | | | | | Rename VIATRA subprojects to Refinery Interpreter to avoid interfering with Eclipse Foundation trademarks. Uses refering to a specific (historical) version of VIATRA were kept to avoid ambiguity.
* build: fix Sonar quality gate issuesLibravatar Kristóf Marussy2023-09-16
| | | | | Removes VIATRA sources from coverage anaylsis, since those files are maintained by the VIATRA project.
* Merge remote-tracking branch 'upstream/main' into partial-interpretationLibravatar Kristóf Marussy2023-09-14
|\