#!/usr/bin/env bash set -euo pipefail ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" REPORT_DIR="${1:-$ROOT_DIR/reports/math/latest}" echo "Running math audit using vectors: default" GOCACHE="${GOCACHE:-$ROOT_DIR/.gocache}" \ GOFLAGS="${GOFLAGS:-}" \ go run ./tools/math-audit --vectors default --report "${REPORT_DIR}"