*/
export function computeNoRevertScore(beforeText: string, afterText: string, currentText: string): number {
const aiSimilarity = compute4GramTextSimilarity(afterText, beforeText);
editSurvivalTracker.ts
if (aiSimilarity === 1) {
// AI's edit produced text identical to the file before — there
// is nothing to revert. Guard so we don't divide by zero.