From d5d908dda655c791329563522faad42d7e4ee618 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 12 Jul 2015 00:11:56 -0700 Subject: 1766 --- html/075scenario_console.cc.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'html/075scenario_console.cc.html') diff --git a/html/075scenario_console.cc.html b/html/075scenario_console.cc.html index fe3b2adc..9a0bc5c9 100644 --- a/html/075scenario_console.cc.html +++ b/html/075scenario_console.cc.html @@ -76,7 +76,7 @@ if (s == "console&quo :(before "End Primitive Recipe Declarations") ASSUME_CONSOLE, :(before "End Primitive Recipe Numbers") -Recipe_number["assume-console"] = ASSUME_CONSOLE; +Recipe_ordinal["assume-console"] = ASSUME_CONSOLE; :(before "End Primitive Recipe Implementations") case ASSUME_CONSOLE: { //? cerr << "aaa: " << current_instruction().ingredients.at(0).name << '\n'; //? 2 @@ -195,7 +195,7 @@ scenario events-in-scenario [ :(before "End Primitive Recipe Declarations") REPLACE_IN_CONSOLE, :(before "End Primitive Recipe Numbers") -Recipe_number["replace-in-console"] = REPLACE_IN_CONSOLE; +Recipe_ordinal["replace-in-console"] = REPLACE_IN_CONSOLE; :(before "End Primitive Recipe Implementations") case REPLACE_IN_CONSOLE: { assert(scalar(ingredients.at(0))); @@ -236,8 +236,8 @@ long long int size_of_event() // memoize result if already computed static long long int result = 0; if (result) return result; - vector<type_number> type; - type.push_back(Type_number["event"]); + vector<type_ordinal> type; + type.push_back(Type_ordinal["event"]); result = size_of(type); return result; } @@ -246,9 +246,9 @@ long long int size_of_events() // memoize result if already computed static long long int result = 0; if (result) return result; - vector<type_number> type; - assert(Type_number["console"]); - type.push_back(Type_number["console"]); + vector<type_ordinal> type; + assert(Type_ordinal["console"]); + type.push_back(Type_ordinal["console"]); result = size_of(type); return result; } -- cgit 1.4.1-2-gfad0