Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ __pycache__/
build/
target/
workspace/
.joern-agent/
dist/
.pytest_cache/
.ruff_cache/
Expand Down
68 changes: 49 additions & 19 deletions docs/mncs-reconstruction/evidence/mnel-core-differential-study.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@
},
"mncs_side": {
"source": "mncs/source/mnel/all.mncs",
"source_sha256": "0e5b61440462ad287a0821ef14adf40b74ee519d9eede37fd4a0c905c328f2e0",
"source_sha256": "7116d4391e82d437d5e00c42307f2493181aeef1d5db77826fd7eb9db7eb68a0",
"module": "mnel.all",
"language_profile": "0.8",
"language_profile": "0.6",
"standard_library_bindings": [
"mncs.core.status.v1",
"mncs.core.logic.v1",
"mncs.core.random.v1",
"mncs.core.numeric.v1"
"mncs.core.logic.v1"
],
"library_path": "/home/epi13/Documents/Projects/mncs-language/library"
},
Expand All @@ -32,31 +30,63 @@
"backend": "mncs-research-bytecode",
"outcome": "corpus-executed",
"summary": {
"exit_code": 0,
"exit_code": 1,
"cases_total": 172,
"cases_met": 172,
"experiment_status": "UNKNOWN",
"cases_met": 167,
"experiment_status": "FAIL",
"unresolved_reasons": [
"compilation retained required unresolved obligations"
]
}
},
{
"backend": "mncs-portable-wasm-mvp",
"outcome": "corpus-executed",
"outcome": "backend-refused-out-of-envelope",
"summary": {
"exit_code": 0,
"cases_total": 172,
"cases_met": 172,
"experiment_status": "UNKNOWN",
"unresolved_reasons": [
"compilation retained required unresolved obligations"
]
}
"exit_code": 1,
"compilation_status": "completed_with_unresolved_obligations"
},
"refusal_diagnostics": [
{
"code": "CGN301",
"message": "selected SSA is outside the portable WASM MVP subset"
},
{
"code": "CGN302",
"message": "mncs:0.4:ssa:function:314a5a6299f7a1dcf5476b6ec78c0fad66f2613b88d315f8ead95dd2bf3009ee: constant does not fit in wasm i64"
}
],
"interpretation": "fail-closed envelope refusal; absence of execution is not disagreement"
}
],
"comparison_status": "MISMATCH_DETECTED",
"disagreements": [
{
"backend": "mncs-research-bytecode",
"case_id": "experiment-fail-verdict",
"failure_reason": "argument count does not match SSA inputs"
},
{
"backend": "mncs-research-bytecode",
"case_id": "experiment-pass-supported-transfer",
"failure_reason": "argument count does not match SSA inputs"
},
{
"backend": "mncs-research-bytecode",
"case_id": "experiment-pass-untested-transfer",
"failure_reason": "argument count does not match SSA inputs"
},
{
"backend": "mncs-research-bytecode",
"case_id": "experiment-rejected-plan",
"failure_reason": "argument count does not match SSA inputs"
},
{
"backend": "mncs-research-bytecode",
"case_id": "experiment-unknown-verdict-stays-provisional",
"failure_reason": "argument count does not match SSA inputs"
}
],
"comparison_status": "AGREEMENT_OVER_CORPUS",
"disagreements": [],
"non_claims": [
"observed agreement is not proof of semantic equivalence",
"the corpus covers a bounded slice of MNEL concepts only",
Expand Down
Loading