Skip to content
Open
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# DBJ
*.ilk
*.pdb
.vs
.vscode

# Object files
*.o
*.ko
Expand Down
75 changes: 0 additions & 75 deletions Matrix.c

This file was deleted.

40 changes: 0 additions & 40 deletions Matrix.h

This file was deleted.

16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Strassen Algorithm
## 100% REFACTORED, SIMPLE, CORRECT AND WORKING
```
Refactoring (c) 2021 by dbj@dbj.org -- https://dbj.org/license_dbj
```

Implementation of the Strassen Algorithm in C
Clang or GCC are required. Built on WIN10 using `TDM-GCC-64` or `clang 11.0.0`.

 
 

Original README

### Strassen Algorithm

Implementation of the Strassen Algorithm in C, by Ken Dai aka [`MetalheadKen`](https://github.com/MetalheadKen)

The Strassen algorithm, is an algorithm for matrix multiplication. It is faster
than the standard matrix multiplication algorithm, but would be slower than the
Expand Down
Loading