From 606ad99e8363bd520506ea2e88b831911fe03c18 Mon Sep 17 00:00:00 2001 From: y-jan137 Date: Sun, 15 Mar 2026 14:08:51 +0300 Subject: Add QR iteration algos --- experiments/hilbert_qr.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'experiments/hilbert_qr.cpp') diff --git a/experiments/hilbert_qr.cpp b/experiments/hilbert_qr.cpp index 218b35c..f30d2ac 100644 --- a/experiments/hilbert_qr.cpp +++ b/experiments/hilbert_qr.cpp @@ -66,7 +66,6 @@ double orthogonality_error(const QRResult& qr) { using Clock = std::chrono::high_resolution_clock; using Seconds = std::chrono::duration; -// Run fn() `trials` times, return minimum elapsed seconds. template double min_time(Fn fn, int trials = 5) { double best = 1e18; @@ -116,7 +115,7 @@ void print_row(const std::string& method, std::optional r) { int main() { std::cout << std::string(70, '*') << "\n"; - std::cout << " Hilbert QR Experiment — comparing GS variants and Householder\n"; + std::cout << " Hilbert QR Experiment: comparing GS variants and Householder\n"; std::cout << std::string(70, '*') << "\n\n"; std::cout << "H[i][j] = 1/(i+j+1). Condition number grows ~exponentially with n.\n" -- cgit v1.2.3