-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add measurement code for reproduction
- Loading branch information
Showing
17 changed files
with
3,167 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
#format : #tonel | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
SquotTrackedObjectMetadata { | ||
#objectClassName : #PackageInfo, | ||
#id : UUID [ 'd25f57670bf5c440b225a46d41670b53' ], | ||
#objectsReplacedByNames : true, | ||
#serializer : #SquotTonelSerializer | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Class { | ||
#name : #CustomHashSet, | ||
#superclass : #Set, | ||
#category : #'Joana-Core' | ||
} | ||
|
||
{ #category : #'as yet unclassified' } | ||
CustomHashSet class >> reserve: aNumber [ | ||
|
||
^ self new | ||
arraySize: aNumber; | ||
yourself | ||
] | ||
|
||
{ #category : #'as yet unclassified' } | ||
CustomHashSet >> arraySize: aSize [ | ||
|
||
array := self arrayType new: aSize | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Class { | ||
#name : #HashSet, | ||
#superclass : #Set, | ||
#category : #'Joana-Core' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Class { | ||
#name : #ImageOperations, | ||
#superclass : #Object, | ||
#category : #'Joana-Core' | ||
} | ||
|
||
{ #category : #'as yet unclassified' } | ||
ImageOperations class >> as8Bit: aForm [ | ||
|
||
^ aForm as8BitColorForm | ||
] | ||
|
||
{ #category : #'as yet unclassified' } | ||
ImageOperations class >> dimmed: aForm [ | ||
|
||
^ aForm dimmed | ||
] | ||
|
||
{ #category : #'as yet unclassified' } | ||
ImageOperations class >> emboss: aForm factor: aFactor bias: aBias [ | ||
|
||
^ aForm | ||
processUsingKernel: (Matrix rows: 3 columns: 3 contents: #(-2 -1 0 -1 1 1 0 1 2)) | ||
factor: aFactor | ||
bias: aBias | ||
] |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.