-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
subtree has died a slow gruesome death, but files are renamed now
- Loading branch information
Showing
65 changed files
with
113 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
\documentclass{article} | ||
|
||
\usepackage[margin=1in]{geometry} | ||
\usepackage[shortlabels]{enumitem} | ||
|
||
\begin{document} | ||
|
||
\section{Version History} | ||
|
||
\subsection*{v1.0.1} | ||
|
||
\begin{itemize} | ||
\item Update CAS file names for \TeX{}Live | ||
\end{itemize} | ||
|
||
\subsection*{v1.0.0} | ||
|
||
\begin{itemize} | ||
\item Intial release | ||
\end{itemize} | ||
|
||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
// { | ||
// "version": "0.2.0", | ||
// "configurations": [ | ||
// { | ||
// "name": "launch", | ||
// "type": "lua", | ||
// "request": "launch", | ||
// "stopOnEntry": true, | ||
// "program": "${workspaceFolder}\\test\\test.lua", | ||
// "console": "integratedTerminal", | ||
// "outputCapture": [] | ||
// } | ||
// ] | ||
// } | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "launch", | ||
"type": "lua", | ||
"request": "launch", | ||
"stopOnEntry": true, | ||
"program": "${workspaceFolder}\\test\\luacas-main.lua", | ||
"console": "integratedTerminal", | ||
"outputCapture": [] | ||
} | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
-- Loads algebra files in the correct order. | ||
require("_lib.luacas-table") | ||
|
||
require("core.luacas-_init") | ||
|
||
require("algebra.luacas-ring") | ||
require("algebra.luacas-euclideandomain") | ||
require("algebra.luacas-field") | ||
require("algebra.luacas-polynomialring") | ||
require("algebra.luacas-integer") | ||
require("algebra.luacas-rational") | ||
require("algebra.luacas-integerquotientring") | ||
require("algebra.luacas-sqrtexpression") | ||
|
||
require("algebra.luacas-absexpression") | ||
require("algebra.luacas-equation") | ||
require("algebra.luacas-factorialexpression") | ||
require("algebra.luacas-logarithm") | ||
require("algebra.luacas-rootexpression") | ||
require("algebra.luacas-trigexpression") | ||
|
||
require("algebra.polynomialring.luacas-berlekampfactoring") | ||
require("algebra.polynomialring.luacas-zassenhausfactoring") | ||
require("algebra.polynomialring.luacas-decomposition") |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-- Loads calculus files in the correct order. | ||
require("algebra.luacas-_init") | ||
|
||
require("calculus.luacas-derivativeexpression") | ||
require("calculus.luacas-integralexpression") | ||
require("calculus.luacas-diffexpression") |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- Loads core files in the correct order. | ||
|
||
require("core.luacas-expression") | ||
require("core.luacas-atomicexpression") | ||
require("core.luacas-compoundexpression") | ||
require("core.luacas-constantexpression") | ||
require("core.luacas-symbolexpression") | ||
require("core.luacas-binaryoperation") | ||
require("core.luacas-functionexpression") | ||
|
||
|
||
require("core.binaryoperation.luacas-power") | ||
require("core.binaryoperation.luacas-product") | ||
require("core.binaryoperation.luacas-sum") | ||
require("core.binaryoperation.luacas-quotient") | ||
require("core.binaryoperation.luacas-difference") |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.