Skip to content

Refactored, simple, correct and working #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
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 [email protected] -- 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