Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Peter Housel
cl-bench
Commits
081a2169
Commit
081a2169
authored
May 26, 2016
by
Daniel Kochmański
Browse files
setup-big-mess-list: fix the problem with sort!
parent
8c4dfdc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
files/misc.lisp
View file @
081a2169
...
...
@@ -172,8 +172,8 @@
;; allocate a large list of fixnums, and merge-sort the list so that
;; pointers in the list are maximally spread out over memory.
(
defun
setup-walk-list/mess
()
(
setf
*big-mess-list*
(
make-big-list
2000000
))
(
sort!
*big-mess-list*
#'
<
))
(
setf
*big-mess-list*
(
sort!
(
make-big-list
2000000
)
#'
<
))
)
(
defun
walk-list/mess
()
(
let
((
before
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment