pimath 0.1.26 → 0.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,11 +10,11 @@ export declare class LinearSystem implements IPiMathObject<LinearSystem>, IEquat
10
10
  static fromMatrix(matrix: InputValue<Fraction>[][], letters?: string): LinearSystem;
11
11
  add(value: InputValue<LinearSystem | Equation | Polynom>, index?: number): this;
12
12
  buildTex: (equations: Equation[], operators?: (string[])[]) => string;
13
- degree(letter?: string | undefined): Fraction;
13
+ degree(letter?: string): Fraction;
14
14
  get display(): string;
15
15
  get equations(): Equation[];
16
16
  set equations(value: Equation[]);
17
- evaluate(values: InputValue<Fraction> | literalType<number | Fraction>, asNumeric?: boolean | undefined): number | Fraction;
17
+ evaluate(values: InputValue<Fraction> | literalType<number | Fraction>, asNumeric?: boolean): number | Fraction;
18
18
  hasVariable(letter: string): boolean;
19
19
  isEqual(value: LinearSystem): boolean;
20
20
  get isSolvable(): boolean;