Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Changelog for dutils v0.2.0 as of August 5, 2022
# Changelog for dutils v0.2.0 as of August 18, 2022

## NEW

Expand All @@ -9,7 +9,7 @@
- dutils.math.def contains the definitions for the template mathematical type: Mtype, and for the wrappers for the function and operator lists.

- dutils.math.number contains the definition of the Number type, which is currently incomplete and undocumented.
The Number type currently supports four operations: +, -, *, and /.
The Number type currently supports four operations: +, -, *, and /, and the functions toDstring and fromDstring.

- dutils.math.core currently only supports registering and validating a function.

Expand Down
32 changes: 0 additions & 32 deletions MATH SYNTAX.md

This file was deleted.

3 changes: 2 additions & 1 deletion source/dutils/binom.d
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.*/
/** Copyright: 2021, Ruby The Roobster*/
/**Author: Ruby The Roobster, michaeleverestc79@gmail.com*/
/**Author: Ruby The Roobster, rubytheroobster@yandex.com*/
/**Date: October 1, 2021*/
/** License: GPL-3.0**/

module dutils.binom;
///THIS CODE NEEDS WORK.
///Class: Output of member functions of InBinom
//TODO:ADD DLL
//TODO: FIX AND MAKE IT WORK WITH THE MATH LIB
public class OutBinom(X) if(is(X : real)) { //Class for the output of functions involving binomials
private:
uint[] coefficiants;
Expand Down
Loading