/** * NOTE: The simulated processing logic in this file is now obsolete. * All dataset processing is handled by the backend. The upload and processing * flow is initiated from `DatasetManager.tsx` via the new `apiService.ts`. * This file is deprecated. */ import type { Dataset, FullComparisonResult } from '../types'; export const processDataset = (): Promise => { throw new Error( "The `processDataset` function is deprecated. " + "Backend processing is initiated via `uploadAndProcessDataset` in `apiService.ts`." ); };