⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 numbers_platforms.h

📁 A Library of Efficient Data Types and Algorithms,封装了常用的ADT及其相关算法的软件包
💻 H
字号:
/*******************************************************************************++  LEDA 4.5  +++  numbers_platforms.h+++  Copyright (c) 1995-2004+  by Algorithmic Solutions Software GmbH+  All rights reserved.+ *******************************************************************************/// $Revision: 1.3 $  $Date: 2004/02/06 11:19:42 $#ifndef NUMBERS_PLATFORMS_H#define NUMBERS_PLATFORMS_H#if defined(__i386) || defined(__i386__) || defined(_M_IX86)#undef i386#define i386#endif#if defined(__mips) || defined(__mips__)#undef mips#define mips#endif#if defined(__sparc) || defined(__sparc__) #undef sparc#define sparc#endif#if defined(__alpha) || defined(__alpha__)#undef alpha#define alpha#endif#if defined(__powerpc) || defined(__powerpc__)#undef powerpc#define powerpc#endif// power/powerPC shall be supported by class fpu in the future #if defined(__mc68000__) || defined(__mc68000)#undef mc68000#define mc68000#endif// Motorola/68000 shall be supported by class fpu in the future #if defined(__hppa__) || defined(__hppa)#undef hppa#define hppa#endif// HP-PA shall be supported by class fpu in the future #endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -