I hereby claim:
- I am krayfaus on github.
- I am krayfaus (https://keybase.io/krayfaus) on keybase.
- I have a public key ASCvVwEW7Ficy2-QfzR5CMnL7x_d04CheGLptreF_-jBvwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Comment: https://keybase.io/download | |
Version: Keybase Go 4.6.1 (windows) | |
xsFNBF2mK0UBEACrC4+9eOv9CyWintObV/RO+7gGacaEcJ5euSb/UeYLx2gf5ohJ | |
RuxACWbFrQoJ3nd0RJ8hyXuR5biyqfpvC/VEWP9zXnT9RnkzOaZGfMBC2DG6UY0P | |
eiH8G4UPuysQb3ErVzvvwUv7R9peNivZVPKCGIidFZ+57bDWu3ZZszttT7TLNlGY | |
uP/4s4KIE+D3QHfcCWVQg7h368CPSZCnzuKb7HDfSOSPm5TyWs1bR2m2xL9Uufpz | |
HZnzORBlbGTmcVUNUf5qqrHKqbr6LqqzzhBAzyltK1VG6uh492O6QElVchBcAJrJ | |
FUsp/ifSIdLqsRSA5BPaaHKJ3LpXaC6z17yLwDeczGhyLnTWBpoIR25ZKhkO8iLE |
Core: | |
PPU Decoder: Recompiler (LLVM) | |
PPU Threads: 2 | |
PPU Debug: false | |
Save LLVM logs: false | |
Use LLVM CPU: "" | |
Max LLVM Compile Threads: 0 | |
Enable thread scheduler: true | |
Set DAZ and FTZ: false | |
SPU Decoder: Recompiler (LLVM) |
// ---------------------------------------------------------------- | |
// S+ Tree | |
// | |
// Created by: Sergey Slotin | |
// Documented at: | |
// https://en.algorithmica.org/hpc/data-structures/s-tree | |
// https://twitter.com/sergey_slotin/status/1494349254730690561 | |
// | |
// ---------------------------------------------------------------- | |
// |
Context :: struct | |
{ | |
allocator : Allocator; | |
assertion_failure_handler : Assertion_Failure_Handler; | |
logger : Logger; | |
} | |
// 'context' is a reserved keyword. | |
// It refers to the currently bound context. | |
// 'action' doesn't need to know the context type. |