pimath 0.1.21 → 0.1.22

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.
@@ -38,6 +38,10 @@ export declare class PolyFactor implements IPiMathObject<PolyFactor>, IExpressio
38
38
  reduce(): this;
39
39
  root(value: number): this;
40
40
  sort(): this;
41
+ splitFactors(): {
42
+ numerator: PolyFactor;
43
+ denominator: PolyFactor;
44
+ };
41
45
  sqrt(): this;
42
46
  subtract(...values: PolyFactor[]): this;
43
47
  tableOfSigns(): POLYFACTOR_TABLE_OF_SIGNS;
@@ -58,7 +58,7 @@ export interface ISolution {
58
58
  tex: string;
59
59
  value: number;
60
60
  }
61
- export type TABLE_OF_SIGNS_VALUES = '-' | '+' | 'h' | 'z' | 't' | 'd' | '';
61
+ export type TABLE_OF_SIGNS_VALUES = '-' | '+' | 'h' | 'z' | 't' | 'd' | 'u' | 'n' | '';
62
62
  export interface TABLE_OF_SIGNS {
63
63
  roots: ISolution[];
64
64
  signs: TABLE_OF_SIGNS_VALUES[];