.hgignore

Sun, 23 Nov 2025 13:15:19 +0100

author
Mike Becker <universe@uap-core.de>
date
Sun, 23 Nov 2025 13:15:19 +0100
changeset 1508
dfc0ddd9571e
parent 952
dc53362bc5a7
permissions
-rw-r--r--

optimize sorted insertion by using the infimum instead of the supremum

The reason is that the supremum returns the equal element with the smallest index, and we want the largest.
Therefore, we use the infimum, which already gives us the largest index when there are equal elements, and increase the index by one. The infimum is also guaranteed to exist in that case.

952
dc53362bc5a7 add msvc support
Mike Becker <universe@uap-core.de>
parents: 753
diff changeset
1 syntax:glob
753
24dc84788dee replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents: 398
diff changeset
2 nbproject/
24dc84788dee replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents: 398
diff changeset
3 .idea/
952
dc53362bc5a7 add msvc support
Mike Becker <universe@uap-core.de>
parents: 753
diff changeset
4 .vs/
dc53362bc5a7 add msvc support
Mike Becker <universe@uap-core.de>
parents: 753
diff changeset
5 *.vcxproj.user
753
24dc84788dee replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents: 398
diff changeset
6 build/
24dc84788dee replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents: 398
diff changeset
7 dist/
24dc84788dee replace most of the build system with uwproj
Mike Becker <universe@uap-core.de>
parents: 398
diff changeset
8 config.mk

mercurial