Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
FlatlinerDOA committed Apr 22, 2024
1 parent 31db440 commit 19df270
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ A comparison could be drawn between a Rope and a StringBuilder as they use a ver

## Performance - AddRange

![AddRange](https://raw.githubusercontent.com/FlatlinerDOA/Rope/diffmatchpatch/benchmarks/results/Benchmarks.AppendRange-barplot.png)
![AddRange](https://raw.githubusercontent.com/FlatlinerDOA/Rope/main/benchmarks/results/Benchmarks.AppendRange-barplot.png)

Working with a string of length - 32644 characters. - MaxLeafLength = ~32kb, Max Depth = 46

Expand All @@ -96,7 +96,7 @@ Working with a string of length - 32644 characters. - MaxLeafLength = ~32kb, Max

## Performance - InsertRange

![InsertRange](https://raw.githubusercontent.com/FlatlinerDOA/Rope/diffmatchpatch/benchmarks/results/Benchmarks.InsertRange-barplot.png)
![InsertRange](https://raw.githubusercontent.com/FlatlinerDOA/Rope/main/benchmarks/results/Benchmarks.InsertRange-barplot.png)

| Method | EditCount | Mean | Error | StdDev | Gen0 | Gen1 | Gen2 | Allocated |
|-------------- |---------- |-------------------:|----------------:|----------------:|----------:|----------:|----------:|-------------:|
Expand All @@ -113,7 +113,7 @@ Working with a string of length - 32644 characters. - MaxLeafLength = ~32kb, Max

## Performance - Split then Concat

![Split then Concat](https://raw.githubusercontent.com/FlatlinerDOA/Rope/diffmatchpatch/benchmarks/results/Benchmarks.SplitThenConcat-barplot.png)
![Split then Concat](https://raw.githubusercontent.com/FlatlinerDOA/Rope/main/benchmarks/results/Benchmarks.SplitThenConcat-barplot.png)

| Method | EditCount | Mean | Error | StdDev | Gen0 | Gen1 | Gen2 | Allocated |
|-------------- |---------- |----------------:|----------------:|--------------:|----------:|---------:|---------:|------------:|
Expand All @@ -129,13 +129,13 @@ Working with a string of length - 32644 characters. - MaxLeafLength = ~32kb, Max

## Performance - Create New

![Create New Empty](https://raw.githubusercontent.com/FlatlinerDOA/Rope/diffmatchpatch/benchmarks/results/Benchmarks.CreateNewEmpty-barplot.png)
![Create New With Length 10](https://raw.githubusercontent.com/FlatlinerDOA/Rope/diffmatchpatch/benchmarks/results/Benchmarks.CreateNewWithLength10-barplot.png)
![Create New Empty](https://raw.githubusercontent.com/FlatlinerDOA/Rope/main/benchmarks/results/Benchmarks.CreateNewEmpty-barplot.png)
![Create New With Length 10](https://raw.githubusercontent.com/FlatlinerDOA/Rope/main/benchmarks/results/Benchmarks.CreateNewWithLength10-barplot.png)


## Performance - Equals

![Equals](https://raw.githubusercontent.com/FlatlinerDOA/Rope/diffmatchpatch/benchmarks/results/Benchmarks.Equals-barplot.png)
![Equals](https://raw.githubusercontent.com/FlatlinerDOA/Rope/main/benchmarks/results/Benchmarks.Equals-barplot.png)

| Method | Length | Mean | Error | StdDev | Gen0 | Gen1 | Allocated |
|--------------------- |------- |------------:|-----------:|----------:|-------:|-------:|----------:|
Expand All @@ -158,7 +158,7 @@ Working with a string of length - 32644 characters. - MaxLeafLength = ~32kb, Max

## Performance - IndexOf

![IndexOf](https://raw.githubusercontent.com/FlatlinerDOA/Rope/diffmatchpatch/benchmarks/results/Benchmarks.IndexOf-barplot.png)
![IndexOf](https://raw.githubusercontent.com/FlatlinerDOA/Rope/main/benchmarks/results/Benchmarks.IndexOf-barplot.png)

| Method | Length | Mean | Error | StdDev | Gen0 | Allocated |
|---------------------------- |------- |-------------:|-------------:|-----------:|-------:|----------:|
Expand Down
2 changes: 1 addition & 1 deletion src/Rope.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Copyright>©️ 2024 Andrew Chisholm</Copyright>
<PackageProjectUrl>https://github.com/FlatlinerDOA/Rope</PackageProjectUrl>
<RepositoryUrl>https://github.com/FlatlinerDOA/Rope.git</RepositoryUrl>
<Version>1.2.0</Version>
<Version>1.3.0</Version>
<Authors>Andrew Chisholm</Authors>
<Description>
C# implementation of a Rope immutable data structure. A Rope is an immutable sequence built using
Expand Down

0 comments on commit 19df270

Please sign in to comment.