Skip to content

Commit f38c404

Browse files
committed
Tested and build
1 parent 78b4c38 commit f38c404

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+191
-288
lines changed

.idea/workspace.xml

+50-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/algebra/polyFactor.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ export declare class PolyFactor implements IPiMathObject<PolyFactor>, IExpressio
3838
reduce(): this;
3939
root(value: number): this;
4040
sort(): this;
41+
splitFactors(): {
42+
numerator: PolyFactor;
43+
denominator: PolyFactor;
44+
};
4145
sqrt(): this;
4246
subtract(...values: PolyFactor[]): this;
4347
tableOfSigns(): POLYFACTOR_TABLE_OF_SIGNS;

dist/pimath.interface.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export interface ISolution {
5858
tex: string;
5959
value: number;
6060
}
61-
export type TABLE_OF_SIGNS_VALUES = '-' | '+' | 'h' | 'z' | 't' | 'd' | '';
61+
export type TABLE_OF_SIGNS_VALUES = '-' | '+' | 'h' | 'z' | 't' | 'd' | 'u' | 'n' | '';
6262
export interface TABLE_OF_SIGNS {
6363
roots: ISolution[];
6464
signs: TABLE_OF_SIGNS_VALUES[];

0 commit comments

Comments
 (0)