Refer to https URLs when applicable

This commit is contained in:
Rangi42
2024-02-18 14:58:46 -05:00
parent 26f150220b
commit 2dee0fc536
4 changed files with 4 additions and 5 deletions

View File

@@ -12,7 +12,7 @@
- stag019 <stag019@gmail.com>
- Antonio Niño Díaz <antonio_nd@outlook.com>
- Eldred "ISSOtm" Habert <me@eldred.fr>
- Sylvie "Rangi" Oukaour <http://github.com/Rangi42>
- Sylvie "Rangi" Oukaour <https://github.com/Rangi42>
## Other contributors
@@ -22,7 +22,7 @@
- David Brotz <dbrotz007@gmail.com>
- James "JL2210" Larrowe <https://github.com/JL2210>
- Maja Kądziołka <github@compilercrim.es>
- The Musl C library <http://www.musl-libc.org>
- The Musl C library <https://musl.libc.org/>
- obskyr <powpowd@gmail.com>
- The OpenBSD Project <http://www.openbsd.org>
- Quint Guvernator <quint@guvernator.net>

View File

@@ -136,7 +136,7 @@ The RGBDS source code file structure is as follows:
## 4. Acknowledgements
RGBGFX generates palettes using algorithms found in the paper
["Algorithms for the Pagination Problem, a Bin Packing with Overlapping Items"](http://arxiv.org/abs/1605.00558)
["Algorithms for the Pagination Problem, a Bin Packing with Overlapping Items"](https://arxiv.org/abs/1605.00558)
([GitHub](https://github.com/pagination-problem/pagination), MIT license),
by Aristide Grange, Imed Kacem, and Sébastien Martin.

View File

@@ -25,7 +25,7 @@ using std::swap;
namespace packing {
// The solvers here are picked from the paper at http://arxiv.org/abs/1605.00558:
// The solvers here are picked from the paper at https://arxiv.org/abs/1605.00558:
// "Algorithms for the Pagination Problem, a Bin Packing with Overlapping Items"
// Their formulation of the problem consists in packing "tiles" into "pages"; here is a
// correspondence table for our application of it:

View File

@@ -463,7 +463,6 @@ static void parseACTFile(std::filebuf &file) {
static void parseACOFile(std::filebuf &file) {
// https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/#50577411_pgfId-1055819
// http://www.nomodes.com/aco.html
char buf[10];