WO1997036222A1 - Two-digit hybrid radix year numbers for year 2000 and beyond - Google Patents

Two-digit hybrid radix year numbers for year 2000 and beyond Download PDF

Info

Publication number
WO1997036222A1
WO1997036222A1 PCT/US1997/005345 US9705345W WO9736222A1 WO 1997036222 A1 WO1997036222 A1 WO 1997036222A1 US 9705345 W US9705345 W US 9705345W WO 9736222 A1 WO9736222 A1 WO 9736222A1
Authority
WO
WIPO (PCT)
Prior art keywords
digit
year
radix
decimal
hybrid
Prior art date
Application number
PCT/US1997/005345
Other languages
French (fr)
Inventor
Decao Mao
Original Assignee
Decao Mao
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Priority claimed from US08/715,616 external-priority patent/US5668989A/en
Application filed by Decao Mao filed Critical Decao Mao
Priority to CA002236815A priority Critical patent/CA2236815A1/en
Priority to EP97920013A priority patent/EP0871932A4/en
Priority to BR9711080A priority patent/BR9711080A/en
Publication of WO1997036222A1 publication Critical patent/WO1997036222A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/30Arrangements for executing machine instructions, e.g. instruction decode
    • G06F9/30003Arrangements for executing specific machine instructions
    • G06F9/30007Arrangements for executing specific machine instructions to perform operations on data operands
    • G06F9/30025Format conversion instructions, e.g. Floating-Point to Integer, decimal conversion
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/78Methods to solve the "Year 2000" [Y2K] problem
    • HELECTRICITY
    • H03ELECTRONIC CIRCUITRY
    • H03MCODING; DECODING; CODE CONVERSION IN GENERAL
    • H03M7/00Conversion of a code where information is represented by a given sequence or number of digits to a code where the same, similar or subset of information is represented by a different sequence or number of digits
    • H03M7/02Conversion to or from weighted codes, i.e. the weight given to a digit depending on the position of the digit within the block or code word
    • H03M7/12Conversion to or from weighted codes, i.e. the weight given to a digit depending on the position of the digit within the block or code word having two radices, e.g. binary-coded-decimal code

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Devices For Executing Special Programs (AREA)

Abstract

A method and related input/output devices for using biased 2 digit 'hybrid radix' numeric fields for inputting, generating, storing, processing, and outputting year numbers ranging from 1900 to 2059 and beyond in a data processing system (fig. 1A). In a hybrid radix 2 digit year number, the higher digit is treated as hexadecimal (or in other radix), but displayed in a decimal-like style with font patterns 0-9 and '0, '1, '2, '3, etc. (fig. 1B). While the lower digit is treated as ordinary decimal, so that the year 1900 is represented and processed as 00 while the year 2000 as '00. For applications written with high level languages such as COBOL and SQL, the method can be embodied solely in the system side (compiler, other system software and/or hardware), and no change other than a re-compilation with a new compiler is needed for existing application software. Compatibility with existing data files and databases is automatically maintained.

Description

Two-Digit Hybrid Radix Year Numbers For Year 2000 And Beyond
Background-Field of Invention
Most existing application software in business data processing area treat a date in a format similar to "MM/DD/YY" or "YY/DDD", using 2 digits to carry the last 2 digits of a 4 digit year number, resulting in 2 digit year numbers For example, the year number 1996 is input, stored, processed, and displayed as "96" However, starting at year 2000, this will cause problems because "00" could be interpreted as either "1900" or "2000", and for example the length of a period from 1 96 to 2000 could be negative if 96 is subtracted from 00 This problem is known as the "Year 2000 (Y2K) Problem" in the industry, and has been considered a crisis
This invention solves the problem by changing the data input/output mechanism, the storage and processing of 2 digit numbers, such that the higher digit of a 2 digit number is treated as hexadecimal, and thus 1 0 (instead of 100) yeas can be represented with a 2 digit year number No change is needed for application software source code in high level languages, year numbers beyond 1999 are still 2 digit, the displayed and printed out year numbers are decimal-like and self-explanatory With this invention, the existing software can continue to work 60 more years until the year 2059
Background-Description of prior Art
The "Year 2000 Problem" has been noticed and considered catastrophic since 1993, but so far actually no effective and easy solution is proposed for the problem IBM proposed several solutions, mainly
1) Continuing to use 2 digit year numbers with a configurable "sliding century window" For example, use numbers 60 to 99 to represent years 1960 to 1999, and 00 to 59 to represent years 2000 to 2059 While the sliding window mechanism is implemented in the system side, the application software need be modified to setup and change the window accordingly However, for some, if not all, applications this solution is not practical, because a window of 100 years could be too small, for example it is quite possible a person born in 1920 is still alive in 2020 The existing databases and/or data files make the situation even worse, because before a window can be decided for a particular application a user has to know what is the earliest year number stored in the databases and'or data files
2) Changing year numbers from 2 digit into 4 or 3 digit IBM announced their new 4 digit (year number) compliant system software which will provide 4 digit year numbers to the applications, therefore newly developed application software can begin to use 4 digit year numbers However, existing application software source code need be modified to use 4 digit year numbers before a re-compilation
Solution solely from the system side is considered not possible This is because the system per se, either the hardware or the software, can not distinguish which particular 2 digit field is used for a year number (and which is not) In the mean time, a 2 digit field is considered anyway too small for year numbers after 1999 if sliding century window is not used Although theoretically the space for a 2 digit field can accommodate at least 256 states if it is used to carry a hexadecimal number, the input/output and the processing remain problems (for example, no user will accept the idea to use either "60h" or "x'60" to represent the year 1996), and more importantly the compatibility between the new software and the existing data files and databases is a big problem
- Therefore, most efforts are focused on the application software side, and changing these 2 digit fields into 3 or 4 digit seemed to be the only practical approach Gary D Brown predicted in his book "Advanced ANSI COBOL with Structured Programming" (second edition, 1992, Wiley & Sons, page 371) that this would "keep thousands of maintenance programmers busy in the last year of this century". Unfortunately, the change is by no means trivial and cheap. An article on the recent (Aug. 19, 1996) issue of the Fortune magazine even referred the project to be "the biggest single information project the world has ever faced" (page 54).
There has been hot discussion on the Internet for a while on the field size changes, mainly focused on how to organize and implement such a project Some companies announced computer tools to scan application software source codes, single out these 2 digit fields and change them "automatically" based on some pattern-matching or rule- based analysis.
However, the enforcement of such changes is not only expensive, but also dangerous There is no systematic way which can guarantee that all appropriate 2 digit fields can be singled out and changed, no matter by human or by some computer tools Furthermore, the 2 digit year number fields are not only pervasive in the existing programs, but also in the existing data files and databases That means the data files and the database schema and contents also need be changed For on-line applications, the blackout time per se, during the data file and/or database conversion, might be unacceptable. Finally, the change from 2 digit into 4 digit could also cause problems on the user interface
Objects and Advantages
This invention solves the problem solely in the system side for application software in high level languages (such as COBOL). For these applications, no change other than a re-compilation (with a new compiler) is needed for the source programs. All the data files need no change, and all the databases will continue to work with a re-compiled DBMS while no change is needed for the database schema and contents.
Solving the problem solely in the system side has many advantages. At first, the hanges, no mater in hardware or in software, are much cheaper Comparing to the cost the application software and database changes could cause, the cost for the hardware and system software changes (to embody this invention) is almost negligible. Second, but more importantly, it is much safer, because that means the effort is centralized. The hardware and/or system software (compilers and database management systems) venders can concentrate better resources into the projects, and have better quality control. Although the 2 digit year number fields are defined in the application programs, all the processing and arithmetic operations are eventually executed by the system resources. That means no one single field can bypass or escape from the system control, as long as the system hardware and software are properly designed and implemented. Third, it is much more effective, once the new hardware and/or system software are available, users need only to upgrade their hardware and system software (compilers, database management systems, etc.), and then re-compile their application programs. At last, because no change is needed for the application software and the databases, the blackout during the transition can be reduced to the minimal
Description
This invention solves the "Year 2000 Problem" from 3 tightly related perspectives.
• Input/output, which involves how to input a biased (with an offset of 1900) 2 digit hybrid radix number representing a year number in the 1900 - 2059 range from the keyboard, and display or print out the number in a 2 digit decimal-like field. Also, how the system can generate a consistent 2 digit "current year number" after year 1999.
• Storage, namely how to store a year number beyond year 1999 in a 2 digit field in the memory, in a way which is compatible to the existing software and databases.
• Processing, how to apply arithmetic operations to such 2 digit fields to get correct results.
Fig. 1 illustrates the difference between the numeric key pads of an ordinary -keyboard and a modified keyboard, the "keyboard 2000". Six new keys, key '0, 1/2/3, '4, and '5, are added, each represents the first digit of a decade after year 1999. Accordingly, six new digit font patterns are created and embodied for displaying and/or printing out.
For example, key '0 will be used for a year of 200x, while key '1 will be used for a year of 201 x, and the like. The six particular exchange codes, generated by the keyboard or sent to the screen or printer, depend on the system, and is flexible. It could be in "escape sequence", ASCII, EBCDIC, zoned decimal, proprietary internal coding, and so forth. For example, in 8 bit ASCII, codes BOh to B5h might be used for digits '0 to'5, while 30h to 35h are used for digits 0 to 5.
An alternative is to use the "shift" or other similar "meta" keys together with the ordinary numeric keys. In that case the same numeric keys 0 - 5 are shared to generate either digits 0-5 or digits '0-5
In business applications, computer systems use a "packed" or "unpacked" BCD code to carry, or store, a decimal digit In Packed BCD, 4 bits are used to represent one of the 10 possible decimal digits (0 to 9). However, 4 bits can actually be used to represent one of 16 different states, 6 states are wasted in packed BCD coding (more are wasted in unpacked BCD coding) Taking advantage of this fact, this invention uses 4-bit BCD code as hexadecimal, to carry the 6 newly added hexadecimal, but decimal-like, "digits" '0 to '5, together with the 10 ordinary decimal digits in a special way.
The use of the 6 extra states in a 4-bit BCD code is conditional, it is only applied to the second digit before the decimal point (either explicit or implicit) if this digit is the most significant digit in the number, and it follows some special procedures and arithmetic rules, which I will describe. In this way, in a 2 digit year number the first (lower) digit is in radix 10, while the second digit is in radix 16, and therefore is called a "hybrid radix" number
The concept of hybrid radix is not new, for example in a month number the second digit is actually in radix 1. However, applying the concept to year numbers, artificially -making a year number hybrid radix, which otherwise is pure decimal in common sense, leads to the solution of the "Year 2000 Problem". Note that although 2 digit hybrid radix is specially chosen for year numbers, in a system embodying this invention all 2 digit numbers are in hybrid radix, the system need not to distinguish whether a particular 2 digit number is a year number This is because decimal is a true subset of hexadecimal, and difference exists only if the value is larger than 9 on the second digit, which in 2 digit pure decimal means overflow This is why we don't need to single out these numbers representing a year number from the application source programs, and why it is automatically compatible with existing databases and data files
Special procedures apply when a number (numeric field) is entered, or to be displayed or printed Fig 2 and Fig 3 are flowcharts illustrating the procedures When a number is entered, the second digit is allowed to carry a hexadecimal value (0-9, and O-5), if the integer potion is a 2 digit field Accordingly, when a number is displayed (left to right), every digit is a normal decimal digit except the second (higher) digit of a 2 digit field which is hexadecimal The following examples further explain how the digits are input, stored, and interpreted storage value output reason
[ 1][2][3][4] invalid, not a 2 digit field,
[3] [4] invalid, not the higher digit,
[1][2][3][4] 1234 1234 normal pure decimal,
[3][4] 34 34 the second digit is the highest digit, but is 3 3][4] 134 '34 the second digit is the highest digit, and is '3
In summary, the special rules for the input, storage, and interpretation of the second digit before the decimal point are
• The second digit is decimal if it is not the highest digit in a field
• If the second digit is the highest digit in a field, then its value is stored and interpreted as hexadecimal, using symbols '0 to '5 to represent value 10 to 15
Flow chart Fig 4 illustrates how to expand a 2 digit field into 3 digit (or longer) field
Note that here the word 'Yield" means a smallest logical unit of storage space For example, a 2 digit year number is such a unit, which can not be further divided logically, although physically it can For a date in "MM/DD/YY" format, for example, physically the whole date is carried in a 6 digit string, however the year number is carried in a 2 digit field, and therefore the second digit is in hexadecimal Although the MM field is also 2 digit, and thus the second digit is also hexadecimal, but the existing software must already eliminated the possibilities to have a value greater than 1 on this digit
Since the second digit before the decimal point is in a different radix, we need some special procedures and rules for its arithmetic operations as well Fig 5, Fig 6, and Fig 7 are flowcharts for the special arithmetic procedures for ADD and SUB operations
For an ADD operation, all digits follow ordinary decimal ailes, except the second digit which follows the hexadecimal rules if and only it is the highest digit in a field In addition, if the second digit is the highest digit, and a hexadecimal carry is generated from this digit position, then the sum is adjusted by adding a 6 to the second digit to make it consistent with pure decimal The procedure is illustrated in Fig 5 Following are several examples
Arithmetic before 2nd digit Carτ\ from the adjustment hexadecimal highest digit Adjustment Overflow
36 + 95 = 31, Yes, No, No, No,
036 + 095 = 131, No, No, No, No,
76 + 95 = 1 1, Yes, Yes, 1 1 + 60 = 71, Yes
In pure decimal, the fact a carry is generated from the highest digit indicates an overflow Usually, like in COBOL, a "size-error" condition will be raised in such a case For 2 digit numbers, since they are now in hybrid radix, a size-error is raised if and only if the sum is greater than 159
Similarly, for a SUBtract operation, there is no difference if the fields are not 2 digit fields In practice, a SUB operation is almost always reduced into add the complement Of the subtrahend to the minuend Accordingly, for a SUB operation on 2 digit fields a 15's complement is taken for the second digit, while for the first digit a 9"s complement is taken Because of this, 2 special les are applied 1 ) The result is adjusted by subtracting a 6 from the second digit
2) The hexadecimal carry is inverted, and 100's complement is taken and the result is negative if carry is generated (after inverting)
The procedure, applicable if both operands are 2 digit, is illustrated in Fig 6, and following are several examples.
1 ) 23 - 12 = 23 + '47 + 1 = 71, 71 - 60 = 1 1;
2) 12 - 23 = 12 + '36 + 1 = '49, '49 - 60 = 89, and 100 - 89= -11,
3) 91 - 72 = 91 + 87 + 1 = 79, 79 - 60 = 19,
4) 72 - 91 = 72 + 68 + 1 = '41, '41 - 60 = 81, and 100 - 81 = -19,
5) 91 - 12 = 91 + '47 + 1 = '39, '39 - 60 = 79,
6) 12 - 91 = 12 + 68 + 1 = 81, 81 - 60 = 21 , and 100 - 21 = -79,
In example 1, the subtrahend 12 is changed into its complement '47, and the sum is incremented by one (as usual) No hexadecimal carry is generated in this case because the carry is inverted, although in the normal sense we do have a carry because the result is greater than 15 After adjustment, the result is a positive 11
In contrast, in example 2 a hexadecimal carry is generated, again because it is inverted, although the result on the second digit is not greater than 15 Because of this, 1 0's complement is taken after the adjustment, and the result is negative
The procedure applies only if both operands are 2 digit (or less) If either the minuend or the subtrahend is longer than 2 digits, then the 2 digit one is expanded into a 3 digit buffer, and then normal decimal rules apply A simpler implementation, is to expand the minuend and subtrahend into two 3 digit BCD buffers first, even if both are 2 digit, then execute ordinary decimal SUB there, and finally convert the result back into 2 digit In this way, the expansion automatically compensated the needed adjustment after a sub operation I did not provide a flowchart for converting back, because it is simply the reverse of the expansion discarding the third digit and adding a 10 to the second digit if the third digit is 1 » "Compare" is actually a SUB operation, it follows the same rules for SUB, but does not physically change the minuend These rules are different to either pure decimal or pure hexadecimal, and are applied conditionally, therefore it might be called "conditional hybrid radix".
I did not describe the MULTIPLY and DIVIDE operations explicitly, because they are similar, once the rules on how to interpret the second digit how to expand are defined, the fiirther processing is straightforward. For example, all 2 digit fields can be expanded into 3 digit buffers (Fig. 4) before a multiply or divide operation is executed
Unpacked BCD uses 8 bits to represent a decimal digit, with the last 4 bits remaining the same as the corresponding packed BCD code. Therefore, the same rules also apply to unpacked BCD codes
For application software written in high level languages, such as COBOL and SQL, the arithmetic procedures can be embodied purely in the system software. The flowcharts can be easily turned into codes in various languages, and can then be embodied in compilers and/or other system software (such as subroutine libraries, database management systems, etc )
Particularly, the changes can be implemented as subroutines embedded either in the code generation potion of a compiler or in libraries, depending on the particular language All the related input/output, processing, and arithmetic operations are translated into calls to these subroutines
In addition, software changes are also needed in two other aspects.
1) Generating the current year number in accordance to the special rules. For example, in COBOL, the "ACCEPT FROM DATE" statement should return '00 (rather than 00) in the YY field in year 2000 The implementation for this is straightforward
2) Allowing the six newly added digits pass the various range checks For example, in COBOL the "IS NUMERIC" clause and other related mechanisms should recognize '0 to '5 as numeric values. Again the implementation is straightforward
Following is an example on how to embody this invention in a COBOL compiler, by either developing a new one or modifying an existing one • Code implementing the "ACCEPT" statement is enhanced The input procedure illustrated in flowchart Fig. 2, plus the keyboard changes illustrated in Fig 1 , and the change for "ACCEPT FROM DATE" are embodied here
• Code implementing the "DISPLAY" statement is enhanced The output procedure illustrated in flowchart Fig 3, and possibly the font change as well, are implemented here
• Code implementing the "MOVE" statement is changed The rules for expanding a 2 digit field (Fig 4), and the reverse, are embodied here
• Code implementing the "ADD", "SUBTRACT", "MULTIPLY", "DIVIDE", and "COMPUTE" statements are enhanced The rules and procedures for arithmetic operations are embodied here
• Code implementing the "<", "<=", "=", ">=", and ">" operators are enhanced to adapt to the new code for SUB operation (Fig 6 or Fig 7)
• The definitions for NUMERIC and ALPHANUMERIC are enhanced to include the six new digits Typically the "IS NUMERIC" clause, "IS NOT NUMERIC" clause, and the INSPECT statement will call a common routine something like is_digit() to do a range check, and the change is embodied here
While this is a pure software implementation, some rules can also be implemented as hardware or firmware In addition, while the example is for COBOL compiler, similar changes can be implemented for other programming languages, such as PL/I, and/or other system software, like database management systems, and query languages such as SQL
In the input/output side, as described before, six new exchange codes are defined, six new keys or key combinations are added to the keyboard, and six new font patterns are added to the output device To generate exchange code for each of these new keys, necessary circuitry or a combination of circuitry and software is also added, but which is quite simple Similarly, to display or print out each of the new font patterns, necessary circuitry or a combination of circuitry and software is added in the output device, and which is simple again The font patterns can be stored either in the output device, or in the host machine, depending on the particular architecture
User Interface and Operation
Essentially the user interface of existing software remains unchanged, except that 6 new keys, or key combinations, and 6 new font patterns, namely '0, 1/2/3/4, and '5, are added to the input and output devices respectively When a user is prompted to enter a 2 digit year number, the 6 newly added digits can be used together with the 1 normal digits (0 - 10) For example, '"00" will represent the year 2000, and so forth The 6 new hexadecimal numeric font patterns are decimal-like and self-explanatory, because each contains a pattern of its decimal counterpart, namely the corresponding decimal digit
The change has no impact on all numeric fields which are not 2 digit For 2 digit numeric fields other than year numbers, in most cases there is no impact, because these numbers are input or generated in range 0 - 99 However, in certain special cases there is a minor impact which is discussed following
Disadvantage
For a 2 digit numeric field other than a year number, if arithmetic operation is applied, and the programmer relies on the system to raise a size-error when the result is larger than 99, now a size error is raised only if the result is larger than 159 For example, if 76 is added to 50, the sum should be 26 together with a size-error in pure decimal However, because the second digit is now hexadecimal, the sum will be '26 without size error This may or may not be considered a problem, if '26 is inteφreted as 126 On the other hand, the result is the same if 76 is added to 90, namely a sum of 66 together with a size-error
Summary, Ramification, and Scope of Invention
Year numbers are represented with 2 digit hybrid radix numbers, in which the higher digit is input, generated, stored, processed, and output as hexadecimal, but displayed in a decimal-like way with font patterns 0 - 9 and '0 - '5, while the lower digit is treated as ordinary decimal For application software in high level languages, such as COBOL and SQL, the method can be solely embodied in the system side, mainly in compilers, thus no change to the existing application source code other than a re-compilation is needed, and compatibility with existing data files and databases is automatically maintained
While my description contains many specificity's, these should not be construed as limitations on the scope of the invention, but rather as several exemplification of a few preferred embodiments thereof Many other variations are possible Following are several examples
The method can be applied to unpacked BCD coding as well Further, some systems may use special coding other than BCD, but this will not change the fact that a 4 bit field has 16 different bit combinations and of which only 10 are used to represent a decimal digit, while a 3 bit field is too small for a decimal digit. Therefore, as long as a field can be used for a decimal digit, it can also be used for a hexadecimal digit, and thus the method described in this description can be embodied Note that the radix of the higher digit does not have to be hexadecimal For unpacked BCD, since more bits are used, a radix of larger than 16 cab be used, and more font patterns can be created accordingly
As described earlier, the result of an ADD operation will be incorrect without adjustment if a hexadecimal carry is generated from the higher digit of a 2 digit field However, for software relying on exception handling in which the result is ignored upon overflow, the adjustment is optional
While most of the business application software were written in high level languages, a small potion of the existing application software might be written in assembly languages For application software in assembly languages, although the changes can no longer be solely made in the system side, this invention can still be embodied in the application side to maintain the compatibility with the existing data files, databases, and user interfaces On the other hand, for some modern high level programming languages with operator overloading, such as C++, it is also viable to embody this invention in the application software, by overloading the operators (+, -, *, /, >, <, =, and so forth) with new ones which incorporate the described rules and procedures
Also, a micro processor can be designed to embody the arithmetic rules in the ALU hardware, either hard wired or micro-coded, and either as new instructions, or as a revised version of the old instructions. A BCD adder typically consists of two 4-bit binary (hexadecimal) adders and a decimal carry generator To implement the special rules for the second digit, only minor changes are needed, using the field size to select either the decimal carry or the hexadecimal carry, and the result adjustment circuitry
Further, while the invention can be embodied on general purposed computers, it can also be embodied on special purposed computers or other apparatus with micro¬ processors, such as Point-Of-Sale machine, and so forth
Accordingly, the scope of the invention should be determined not by the embodiments illustrated, but by the append claims and their legal equivalents

Claims

Claims
I clam
1 A method for using 2 digit "hybrid radix" numeric fields for inputting, generating, storing, processing, and outputting year numbers ranging from 1900 to 2059 and beyond in a data processing system, comprising the steps of a) representing a 4 digit decimal year number with a biased 2 digit hybrid radix year number, with the most significant digit in a predetermined radix ranging from 1 1 to 20, and a decimal least significant digit, and b) inputting the higher digit of a 2 digit hybrid radix year number in said radix, from an input device capable of entering 2 digit hybrid radix numbers, and storing the digit in the most significant digit position of a 2 digit numeric field in said radix, and inputting the lower digit of the number in decimal, and storing the digit in the least significant digit position of said 2 digit numeric field, and optionally b') whenever necessary, generating such a 2 digit hybrid radix year number, and storing the generated number in a 2 digit numeric field, and optionally c) whenever a computational operation is to be applied to a stored 2 digit hybrid radix number, applying said radix arithmetic rules to the most significant digit, and applying decimal arithmetic ailes to the least significant digit, and c') alternatively, whenever a computational operation is to be applied to a stored 2 digit hybrid radix number, expanding the number into 3 digit decimal first, then applying decimal arithmetic rules to all the digits and converting the result back into 2 digit, and optionally d) outputting the stored 2 digit hybrid radix year number to an output device capable of displaying or printing 2 digit hybrid radix numbers, with the higher digit in said radix and the lower digit in decimal, and e) providing a central processor to carry out said operations whereby a compatibility with the 2 digit pure decimal year numbers used in the existing data files, database records, software, and user interface, can be maintained after year 1999 2 An improved data processing machine providing functions for inputting, outputting, and computing 2 digit hybrid radix year numbers ranging from 1900 to 2059 and beyond
3 An improved input device providing function for inputting 2 digit hybrid radix year numbers, with means including circuitry and an apparatus selected from the group consisting of a keyboard, a keypad, and a pointing device, for providing conversion from predetermined user's actions, selected from the group consisting of hitting a key, hitting a key combination, clicking a key, and clicking a key combination, to the transmitting of predetermined exchange codes representing 2 digit hybrid radix year numbers
4 The device of Claim 3 is integrated together with a central processor
5 An improved displaying device proving function for displaying 2 digit hybrid radix year numbers, with means including circuitry and structure for providing conversion from received predetermined exchange code representing the higher digit of a 2 digit hybrid radix year number in predetermined radix to a predetermined visible decimal-like pattern containing a recognizable pattern of its decimal counterpart
6 The device of Claim 5 is integrated together with a central processor
7 The device of Claim 5 is integrated together with an input device
8 An improved printing device providing function for printing out 2 digit hybrid ndix year numbers, with means including circuitry and structure for providing conversion from received predetermined exchange code representing the higher digit of a 2 digit hybrid radix year number in predetermined radix to a predetermined visible decimal-like pattern containing a recognizable pattern of its decimal counterpart
9 The device of Claim 8 is integrated together with a central processor
10 The device of Claim 8 is integrated together with an input device
PCT/US1997/005345 1996-03-26 1997-03-20 Two-digit hybrid radix year numbers for year 2000 and beyond WO1997036222A1 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
CA002236815A CA2236815A1 (en) 1996-09-18 1997-03-20 Two-digit hybrid radix year numbers for year 2000 and beyond
EP97920013A EP0871932A4 (en) 1996-09-18 1997-03-20 Two-digit hybrid radix year numbers for year 2000 and beyond
BR9711080A BR9711080A (en) 1996-09-18 1997-03-20 Number of hybrid radical years of two for the year 2000 and beyond

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
US1418496P 1996-03-26 1996-03-26
US08/715,616 1996-09-18
US08/715,616 US5668989A (en) 1996-09-18 1996-09-18 Two-digit hybrid radix year numbers for year 2000 and beyond

Publications (1)

Publication Number Publication Date
WO1997036222A1 true WO1997036222A1 (en) 1997-10-02

Family

ID=26685768

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1997/005345 WO1997036222A1 (en) 1996-03-26 1997-03-20 Two-digit hybrid radix year numbers for year 2000 and beyond

Country Status (1)

Country Link
WO (1) WO1997036222A1 (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
DE19739335A1 (en) * 1997-08-28 1999-03-04 Klaus Peter Fischer Year number handling method for data processor
WO1999012105A1 (en) * 1997-09-03 1999-03-11 Juris Retenais System and method for processing date data for use with computer programs
KR100388752B1 (en) * 2001-06-25 2003-06-25 에스케이텔레텍주식회사 Method for inputting hexadecimal digits on the mobile phone

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3159740A (en) * 1962-01-03 1964-12-01 Ibm Universal radix adder
US3748450A (en) * 1971-10-18 1973-07-24 Comtec Ind Inc Numerical base translator
US3809872A (en) * 1971-02-17 1974-05-07 Suwa Seikosha Kk Time calculator with mixed radix serial adder/subtraction
US4342027A (en) * 1980-06-03 1982-07-27 Burroughs Corporation Radix conversion system
US4792793A (en) * 1987-05-28 1988-12-20 Amdahl Corporation Converting numbers between binary and another base
US5600836A (en) * 1995-11-14 1997-02-04 Turn Of The Century Solution, Inc. System and method for processing date-dependent information which spans one or two centuries

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3159740A (en) * 1962-01-03 1964-12-01 Ibm Universal radix adder
US3809872A (en) * 1971-02-17 1974-05-07 Suwa Seikosha Kk Time calculator with mixed radix serial adder/subtraction
US3748450A (en) * 1971-10-18 1973-07-24 Comtec Ind Inc Numerical base translator
US4342027A (en) * 1980-06-03 1982-07-27 Burroughs Corporation Radix conversion system
US4792793A (en) * 1987-05-28 1988-12-20 Amdahl Corporation Converting numbers between binary and another base
US5600836A (en) * 1995-11-14 1997-02-04 Turn Of The Century Solution, Inc. System and method for processing date-dependent information which spans one or two centuries

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
IEEE SOFTWARE, Vol. 13, No. 3, May 1996, McCABE T., "Cyclomatic Complexity and the Year 2000", pages 15-17. *
See also references of EP0871932A4 *
SOFTWARE ENGINEERING INTERNATIONAL CONFERENCE, 1996, HART et al., "A Scaleable, Automated Process for Year 2000 System Correction", pages 475-484. *

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
DE19739335A1 (en) * 1997-08-28 1999-03-04 Klaus Peter Fischer Year number handling method for data processor
WO1999012105A1 (en) * 1997-09-03 1999-03-11 Juris Retenais System and method for processing date data for use with computer programs
KR100388752B1 (en) * 2001-06-25 2003-06-25 에스케이텔레텍주식회사 Method for inputting hexadecimal digits on the mobile phone

Similar Documents

Publication Publication Date Title
US5668989A (en) Two-digit hybrid radix year numbers for year 2000 and beyond
Waite et al. Compiler construction
US8028280B2 (en) Compiler optimisation of source code by determination and utilization of the equivalence of algebraic expressions in the source code
Hoare et al. An axiomatic definition of the programming language PASCAL
Gropp MPI: the complete reference. The MPI-2 extensions
Gansner et al. The standard ML basis library
Snir MPI--the Complete Reference: the MPI core
Steel Jr A first version of UNCOL
EP1717719A1 (en) Application conversion of source data
Gries et al. Some ideas on data types in high-level languages
EP1008081A1 (en) Character set and programming language extension for enlarging the capacity of a date code
WO1997036222A1 (en) Two-digit hybrid radix year numbers for year 2000 and beyond
Soulié C++ Language Tutorial
US6668373B1 (en) System, apparatus and method for expanding the range of decimal numbers of any length in existing data bases and computer programs
Gay Writing. nl Files.
Skinner The C++ primer: a gentle introduction to C++
Jorgensen MIPS Assembly Language Programming using QtSpim
Bastien et al. Moving to two's complement sign representation
JPS63175927A (en) Method and apparatus for processing binary coded dicimal/backed data
Chu Design Concepts of Japanese-Language Data Processing Systems
KR0129139B1 (en) Data transfer method between client and server in server/client rdbms
Sharan et al. Data Types
Sommerville A pattern matching system
Myers et al. Proposed Standard for a Generic Package of Primitive Functions for ADA. Draft 1.0 ISO-IEC/JTC1/SC22/WG9 (Ada) Numerics Rapporteur Group.
Hanso 535 11111 III l ii i I In lii l (\

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): BR CA CN JP

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH DE DK ES FI FR GB GR IE IT LU MC NL PT SE

WPC Withdrawal of priority claims after completion of the technical preparations for international publication
121 Ep: the epo has been informed by wipo that ep was designated in this application
WWE Wipo information: entry into national phase

Ref document number: 1997920013

Country of ref document: EP

ENP Entry into the national phase

Ref document number: 2236815

Country of ref document: CA

Ref country code: CA

Ref document number: 2236815

Kind code of ref document: A

Format of ref document f/p: F

WWP Wipo information: published in national office

Ref document number: 1997920013

Country of ref document: EP

WWW Wipo information: withdrawn in national office

Ref document number: 1997920013

Country of ref document: EP