Skip to content

Commit cc5fa7f

Browse files
docs(arxiv): add arXiv-ready LaTeX + comments + cover letter
1 parent af68b9a commit cc5fa7f

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

arxiv/ARXIV_COMMENTS.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Primary category: cs.AI
2+
Secondary category: cs.LG
3+
4+
22 pages, 3 figures, 1 table.
5+
Includes adversarial benchmark suite and deterministic trace verification framework.
6+
Source code available at: https://github.com/crasofuentes-hub/qisa-consensus-engine

arxiv/main.tex

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
\documentclass[11pt]{article}
2+
3+
\usepackage[margin=1in]{geometry}
4+
\usepackage{amsmath,amssymb}
5+
\usepackage{booktabs}
6+
\usepackage{hyperref}
7+
\usepackage{graphicx}
8+
9+
\title{QISA: Deterministic Multi-Perspective Consensus with Verifiable Execution Traces}
10+
\author{Oscar Fuentes Fern\'andez \\ Independent Researcher}
11+
\date{}
12+
13+
\begin{document}
14+
\maketitle
15+
16+
\begin{abstract}
17+
We introduce QISA (Quantum-Inspired System of AI Consensus), a deterministic framework for multi-perspective AI consensus that eliminates stochastic sampling from the aggregation stage and provides cryptographically verifiable execution traces. Unlike conventional ensemble or multi-agent aggregation methods that rely on probabilistic sampling, temperature-based decoding, or non-deterministic fusion heuristics, QISA models consensus as an iterative fixpoint computation over structured state transitions.
18+
19+
The system defines a convergence taxonomy via explicit stopping conditions (e.g., converged, max-steps, non-convergent), enabling reproducible and auditable outcomes. Each execution produces a trace commitment that can be externally verified, ensuring integrity of intermediate transitions and final outputs. We provide formal properties including determinism under identical inputs, idempotence at fixpoint, and explicit non-convergence handling via a well-defined policy.
20+
21+
An adversarial benchmark suite evaluates convergence behavior, execution latency, and trace stability across structured conflict scenarios. Experimental results demonstrate stable convergence under bounded iteration depth and consistent trace hashes across repeated runs, supporting full reproducibility.
22+
23+
QISA targets applications where auditability, regulatory compliance, and reproducible AI behavior are required, offering a deterministic alternative to stochastic consensus mechanisms in multi-perspective reasoning systems.
24+
\end{abstract}
25+
26+
\section{Introduction}
27+
QISA is a deterministic framework for multi-perspective consensus that produces externally verifiable execution traces. The objective is reproducibility and auditability of consensus outcomes under bounded iteration.
28+
29+
\section{Method}
30+
We model consensus as an iterative fixpoint computation over a structured state. Each step is recorded, hashed, and chained to produce a cryptographic commitment of the full execution trace.
31+
32+
\subsection{Convergence taxonomy}
33+
We explicitly label stop conditions (e.g., \texttt{converged}, \texttt{max\_steps}, \texttt{non\_convergent}) to support reproducible evaluation and operational policies.
34+
35+
\section{Experiments}
36+
We report adversarial benchmark cases that stress convergence under conflict patterns. We measure latency (ms), peak memory (KB), steps, stop condition, and trace hash stability across repeated runs.
37+
38+
\begin{table}[h]
39+
\centering
40+
\begin{tabular}{lrrrrl}
41+
\toprule
42+
case & ok & ms & peak\_kb & steps & stop\_reason \\
43+
\midrule
44+
choice\_conflict\_3way & 1 & 1.532 & 7 & 5 & converged \\
45+
deadlock\_flipflop & 1 & 2.047 & 6 & 5 & converged \\
46+
numeric\_spread & 1 & 0.930 & 6 & 5 & converged \\
47+
\bottomrule
48+
\end{tabular}
49+
\caption{Adversarial benchmark summary (example run).}
50+
\end{table}
51+
52+
\section{Conclusion}
53+
QISA provides deterministic consensus with verifiable traces and explicit convergence handling.
54+
55+
\bibliographystyle{plain}
56+
\bibliography{refs}
57+
58+
\end{document}

arxiv/refs.bib

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@misc{qisa_repo,
2+
author = {Fuentes Fern\'andez, Oscar},
3+
title = {QISA Consensus Engine: Deterministic multi-perspective consensus with verifiable execution traces},
4+
year = {2026},
5+
howpublished = {\url{https://github.com/crasofuentes-hub/qisa-consensus-engine}}
6+
}

0 commit comments

Comments
 (0)