".ss" -> ".rkt" scan done.

original commit: 3157955d40f89d83fb3d5fa7a2f20639cda69579
This commit is contained in:
Eli Barzilay 2011-07-02 10:37:53 -04:00
parent 72180b7748
commit 5861d07330
7 changed files with 9 additions and 9 deletions

View File

@ -4,7 +4,7 @@
(provide analyze-samples)
(require "structs.ss" "utils.ss" scheme/list)
(require "structs.rkt" "utils.rkt" scheme/list)
(define-syntax-rule (with-hash <hash> <key> <expr>)
(hash-ref! <hash> <key> (lambda () <expr>)))

View File

@ -2,8 +2,8 @@
(provide profile-thunk profile)
(require "sampler.ss" "analyzer.ss"
(prefix-in text: "render-text.ss")
(require "sampler.rkt" "analyzer.rkt"
(prefix-in text: "render-text.rkt")
(for-syntax scheme/base))
(define (profile-thunk thunk
@ -74,7 +74,7 @@
(thread bg-fib)
(list (fibs n) (channel-get ch)))
(require "render-graphviz.ss")
(require "render-graphviz.rkt")
(profile ;(fibs 40)
;(dynamic-require '(lib "scribblings/reference/reference.scrbl") #f)

View File

@ -2,7 +2,7 @@
(provide render)
(require "structs.ss" "analyzer.ss" "utils.ss")
(require "structs.rkt" "analyzer.rkt" "utils.rkt")
(define (render profile
#:hide-self [hide-self% 1/100]

View File

@ -2,7 +2,7 @@
(provide render)
(require "structs.ss" "analyzer.ss" "utils.ss" scheme/list)
(require "structs.rkt" "analyzer.rkt" "utils.rkt" scheme/list)
(define (f:msec msec)
(number->string (round (inexact->exact msec))))

View File

@ -1,6 +1,6 @@
#lang scheme/base
(require "structs.ss" scheme/list scheme/nest)
(require "structs.rkt" scheme/list scheme/nest)
;; Format a percent number, possibly doing the division too. If we do the
;; division, then be careful: if we're dividing by zero, then make the result

View File

@ -1,7 +1,7 @@
#lang scheme/base
(require tests/eli-tester profile/structs profile/analyzer
scheme/match scheme/list "topsort.ss")
scheme/match scheme/list "topsort.rkt")
(define A '(A . #f))
(define B '(B . #f))

View File

@ -96,7 +96,7 @@
'((A) (B)))
;; this is an example using the actual times for the A->B->A case that is
;; tested in main.ss
;; tested in main.rkt
(same-levels '(* 2->1 A 1->2 B 2->1 A 1->2 *)
'((A) (B)))