Skip to content

Commit

Permalink
Merge pull request #369 from antimatter-dimensions/core-mixed-logarithm
Browse files Browse the repository at this point in the history
Move mixed logarithm to core
  • Loading branch information
dan-simon authored Dec 24, 2022
2 parents f50c1bf + c430e15 commit ec3ace4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/ad-notations.community.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ad-notations.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ const displays = (function() {
N.MixedScientificNotation,
N.MixedEngineeringNotation,
N.LogarithmNotation,
N.MixedLogarithmSciNotation,
N.BracketsNotation,
N.InfinityNotation,
N.RomanNotation,
Expand All @@ -97,7 +98,6 @@ const displays = (function() {
CN.OmegaShortNotation,
CN.PrecisePrimeNotation,
CN.JapaneseNotation,
CN.MixedLogarithmSciNotation,
CN.TritetratedNotation,
CN.FlagsNotation,
CN.YesNoNotation,
Expand Down
1 change: 0 additions & 1 deletion src/community/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export * from "./omega";
export * from "./omega-short";
export * from "./precise-prime";
export * from "./japanese";
export * from "./mixed-logarithm-sci";
export * from "./tritetrated";
export * from "./flags";
export * from "./yes-no";
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export * from "./standard";
export * from "./mixed-scientific";
export * from "./mixed-engineering";
export * from "./logarithm";
export * from "./mixed-logarithm-sci";
export * from "./brackets";
export * from "./infinity";
export * from "./roman";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Decimal from "break_infinity.js";
import { Notation } from "../notation";
import { ScientificNotation } from "../scientific";
import { Notation } from "./notation";
import { ScientificNotation } from "./scientific";

const scientific = new ScientificNotation();

Expand Down

0 comments on commit ec3ace4

Please sign in to comment.