Skip to content

Commit

Permalink
Replace tabs with spaces
Browse files Browse the repository at this point in the history
In markdown tabs can result in unpredictable behaviour. Spaces are thus
more reliable.
  • Loading branch information
abactel committed May 14, 2017
1 parent bcad7b7 commit 7b80950
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Expand Up @@ -15,7 +15,7 @@ solver takes 23 seconds for a 1D problem and 86 seconds for a 2D problem (this
is time taken from the time you press the return key on the keyboard to run
your code and to get the final result). The matrix is of the form

A = s^2 I + B
A = s^2 I + B

where B(i,j) depends on R(i,j), the distance between the points x(i) and x(j).
The computed answer is accurate upto more than 10 digits. It is to be noted
Expand Down Expand Up @@ -88,13 +88,13 @@ this file, You can obtain one at <http://mozilla.org/MPL/2.0/.>

## Directories and files

./examples/ : Example input C++ codes; Needed to read input from user or from input file.
./src/ : Source code in C++
./header/ : Relevant header files
./exec/ : Executables for HODLR
./README.md : This file
./LICENSE.md : License file
./makefile.mk : Makefile
./examples/ : Example input C++ codes; Needed to read input from user or from input file.
./src/ : Source code in C++
./header/ : Relevant header files
./exec/ : Executables for HODLR
./README.md : This file
./LICENSE.md : License file
./makefile.mk : Makefile

## Usage

Expand Down Expand Up @@ -146,11 +146,11 @@ double get_Matrix_Entry (const unsigned i, const unsigned j)
4. You can change the kernels in the makefile by changing KERNEL. More kernels
can be added by editing the following function in the file
`get_Matrix.cpp`:
`get_Matrix.cpp`:
```c++
double get_Matrix_Entry(constunsigned i, const unsigned j)
```
```c++
double get_Matrix_Entry(constunsigned i, const unsigned j)
```

5. The dimension of the problem can be changed by changing DIM in the
makefile.
Expand Down

0 comments on commit 7b80950

Please sign in to comment.