Skip to content

Commit f99b3b7

Browse files
committed
refactor: remove HighPrecisionCoord type and related hints from compilation types
- Deleted HighPrecisionCoord type definition from types.ts. - Removed hints related to precision-adaptive strategies from CompilationOptions. - Cleaned up unused properties in CompileTarget and CompilationResult interfaces. - Removed extensive fractal-related tests that were dependent on the removed hints and types.
1 parent 509bc91 commit f99b3b7

7 files changed

Lines changed: 4 additions & 1014 deletions

File tree

src/compute-engine.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ export type {
7171
LanguageTarget,
7272
TargetSource,
7373
CompiledFunction,
74-
HighPrecisionCoord,
7574
} from './compute-engine/compilation/types';
7675

7776
export { JavaScriptTarget } from './compute-engine/compilation/javascript-target';

src/compute-engine/compilation/compile-expression.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ type CompileExpressionOptions<T extends string = string> = {
1919
preamble?: string;
2020
fallback?: boolean;
2121
realOnly?: boolean;
22-
hints?: CompilationOptions['hints'];
2322
};
2423

2524
/**
@@ -81,7 +80,6 @@ export function compile<T extends string = 'javascript'>(
8180
imports: options?.imports,
8281
preamble: options?.preamble,
8382
realOnly: options?.realOnly,
84-
hints: options?.hints,
8583
}) as CompilationResult<T>;
8684
} catch (e) {
8785
if (options?.fallback ?? true) {

src/compute-engine/compilation/fractal-orbit.ts

Lines changed: 0 additions & 72 deletions
This file was deleted.

0 commit comments

Comments
 (0)