Skip to content

Commit

Permalink
remove useless comentary
Browse files Browse the repository at this point in the history
  • Loading branch information
LipArcanjo committed Jul 24, 2024
1 parent 332a874 commit ce38292
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions world_finals/Misc/Gauss.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
/**
* Author: Per Austrin, Simon Lindholm
* Date: 2004-02-08
* License: CC0
* Description: Solves $A * x = b$. If there are multiple solutions, an arbitrary one is returned.
* Returns rank, or -1 if no solutions. Data in $A$ and $b$ is lost.
* Time: O(n^2 m)
* Status: tested on kattis:equationsolver, and bruteforce-tested mod 3 and 5 for n,m <= 3
*/
Solves $A * x = b$. If there are multiple solutions, an arbitrary one is returned.
Returns rank, or -1 if no solutions. Data in $A$ and $b$ is lost.
Time: O(n^2 m)
*/
typedef vector<double> vd;
const double eps = 1e-12;

Expand Down

0 comments on commit ce38292

Please sign in to comment.