Main > Free Download Search >

Free units of measurement for ada software for linux

units of measurement for ada

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1201
Units of measurement for Ada 2.4

Units of measurement for Ada 2.4


Units of measurement for Ada library provides an implementation of dimensioned values for Ada. more>> <<less
Download (0.77MB)
Added: 2007-07-16 License: GMGPL (GNAT Modified GPL) Price:
830 downloads
Simple components for Ada 2.5

Simple components for Ada 2.5


Simple components for Ada is a simple component library for Ada. more>>
Simple components for Ada library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
As a special exception, if other files instantiate generics from this unit, or you link this unit with other files to produce an executable, this unit does not by itself cause the resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why the executable file might be covered by the GNU Public License.
Enhancements:
- Functions Is_In were added for doubly-linked webs and lists. GPS project files were added for GNAT users.
<<less
Download (0.37MB)
Added: 2007-05-20 License: GMGPL (GNAT Modified GPL) Price:
898 downloads
Tables for Ada 1.7

Tables for Ada 1.7


Tables for Ada is a library provides an implementation of tables indexed by strings. more>>
Tables for Ada is a library provides an implementation of tables indexed by strings. The binary search is used for names of known length. It is also possible to search a table for names of unknown length, i.e. to parse a string using some table. Table elements can be of any private type. Key- insensitive tables are supported.
Enhancements:
- GPS project files were added for GNAT users.
<<less
Download (0.017MB)
Added: 2007-05-20 License: GMGPL (GNAT Modified GPL) Price:
888 downloads
Gnome Screen Ruler 0.8

Gnome Screen Ruler 0.8


Gnome Screen Ruler is a customizable screen ruler for Gnome. more>>
Gnome Screen Ruler project is a customizable screen ruler for Gnome.
Gnome Screen Ruler is an on-screen ruler for measuring horizontal and vertical distances in any application. Rulers can be moved and resized using the keyboard.
Main features:
- Horizontal and vertical display
- Multiple units: pixels, inches, centimeters, picas, points, percentage
- Configurable colors and font
- Can be set always-on-top of your application windows
- Can be moved and resized with mouse or keyboard
- Measurement lines track mouse cursor to help measure anything on screen
- Its Free Software released under the GPL
Enhancements:
- Rewrite in Ruby (from C).
- Middle-click now rotates around the mouse position, not the upper-left corner.
- Ruler now shows a left-click target for the popup menu while mouse is over the ruler.
- Unit selection (inches, picas, etc.) moved to popup menu (from preferences dialog).
- Keyboard keys 1-6 now change unit.
- Now uses Cairo for rendering (from GDK).
<<less
Download (0.016MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1042 downloads
Fuzzy sets for Ada 4.2

Fuzzy sets for Ada 4.2


Fuzzy sets for Ada is a library providing implementations of confidence factors. more>>
Fuzzy sets for Ada is a library providing implementations of confidence factors with the operations not, and, or, xor, +, and *, classical fuzzy sets with the set-theoretic operations and the operations of the possibility theory, intuitionistic fuzzy sets with the operations on them, fuzzy logic based on the intuitionistic fuzzy sets and the possibility theory; fuzzy numbers, both integer and floating-point with conventional arithmetical operations, and linguistic variables and sets of linguistic variables with operations on them. Fuzzy sets for Ada has support for string-oriented I/O.
Main features:
- Confidence factors with the operations not, and, or, xor, +, *;
- Classical fuzzy sets with the set-theoretic operations and the operations of the possibility theory;
- Intuitionistic fuzzy sets with the operations on them;
- Fuzzy logic based on the intuitionistic fuzzy sets and the possibility theory;
- Fuzzy numbers both integer and floating-point ones with conventional arithmetical operations;
- Dimensioned fuzzy numbers;
- Linguistic variables and sets of linguistic variables with operations on them;
- String-oriented I/O is supported.
Enhancements:
- The code was tested with GNAT Ada 2005 (GCC 4.0.2 20051125).
- A bug was fixed in Fuzzy.Linguistics.Sets.Defuzzify, which led to incorrect defuzzification with a descending membership function.
<<less
Download (1.0MB)
Added: 2006-05-25 License: LGPL (GNU Lesser General Public License) Price:
1263 downloads
Java Units Generator and Converter 0.1

Java Units Generator and Converter 0.1


Java Units Generator and Converter (JUGC) is a Java tool and library for converting between measuring units. more>>
Java Units Generator and Converter (JUGC) is a Java tool and library for converting between measuring units.
It makes it possible to define units, their relationships and translations in files, to generate code from those definitions and deploy the generated code as a library in a Java project.
The generated code can then be used to convert values from one unit to another.
Enhancements:
- This initial version does the basic conversions using double precision floating point.
<<less
Download (0.010MB)
Added: 2007-01-12 License: BSD License Price:
1015 downloads
units-filter 2.7

units-filter 2.7


Units-filter is a basic standalone filter written in C, flex, and bison. more>>
Units-filter is a basic standalone filter written in C, flex, and bison.
It inputs strings like "1.5e3 nN.m.s^-1" (which could be the time growth ratio of a torque) and outputs the value in standard SI units, followed by the physical dimension of this value.
units-filter can be embedded in educational test systems, in order to analyze a students answer to a problem of physics or chemistry.
Enhancements:
- The support for quantities with a particular number of significative digits was added.
- For example, the entry "1.02m#5" or "1.0200m" are equivalent and signify a distance measurement precise at the sub-millimeter scale.
- Both would yield the output "1.0200e+00 m".
<<less
Download (0.016MB)
Added: 2007-06-30 License: GPL (GNU General Public License) Price:
846 downloads
Interval arithmetic for Ada 1.5

Interval arithmetic for Ada 1.5


Interval arithmetic for Ada is a math library that provides an implementation of intervals for Ada. more>>
Interval arithmetic for Ada is a math library that provides an implementation of intervals for Ada. It includes arithmetic and relational operations.
Examples:
Tri-state logic
The package Intervals serves as a root package and also provides tri-state logic necessary to define relational operations on intervals. The type Logical is defined as:
type Logical is (False, True, Uncertain);
The following operations are defined for Logical:
function "not" (Left : Logical) return Logical;
function "and" (Left, Right : Logical) return Logical;
function "and" (Left : Logical; Right : Boolean)
return Logical;
function "and" (Left : Boolean; Right : Logical)
return Logical;
function "or" (Left, Right : Logical) return Logical;
function "or" (Left : Logical; Right : Boolean)
return Logical;
function "or" (Left : Boolean; Right : Logical)
return Logical;
function "xor" (Left, Right : Logical) return Logical;
function "xor" (Left : Logical; Right : Boolean)
return Logical;
function "xor" (Left : Boolean; Right : Logical)
return Logical;
Enhancements:
- For GNAT users GPS project files were included;
- Based on Measurement units for Ada v 2.4.
<<less
Download (0.25MB)
Added: 2007-08-23 License: GMGPL (GNAT Modified GPL) Price:
792 downloads
PG Calculator for KDE 2.1

PG Calculator for KDE 2.1


Multifunction scientrific skinable RPN calculator for KDE more>> PG Calculator (Second edition) is a power full scientific skinable calculator. It is an excellent replacement for standard Windows calculator. PG Calculator works in algebraic and RPN mode. It recognizes real and complex numbers and allows simple vectors manipulations. There are up to 120 recognized units of measure with possibility to make easy conversions between consistent units.
PG Calculator allows user-defined variables.
It enables numbers inputing in binary, octal, hexadecimal and exponential formats. Graphical user interface can be easy changed with skin implementation. As you can see on the picture PG Calculator will look like real calculator on your desktop.
<<less
Download (1.07MB)
Added: 2009-04-01 License: Freeware Price: Free
205 downloads
MetEngVerter for Linux 1.0

MetEngVerter for Linux 1.0


MetEngVerter Metric/English Measurement Converter more>> MetEngVerter 1.0 by Capaho Web is a desktop tool that converts between selected Metric/English measurements. It provides reasonably accurate conversions between selected units of measure for household and other general use.<<less
Download (1.05MB)
Added: 2009-04-02 License: Freeware Price: Free
209 downloads
Battle of Survival 2.0.1

Battle of Survival 2.0.1


Battle of Survival is a real-time strategy game using the Stratagus game engine. more>>
Battle of Survival is a real-time strategy game using the Stratagus game engine.
The engine and the game are evolving a lot. Therefore, the game will work only with the version of the Stratagus engine matching the release !
Main features:
- New units
- More detailed maps based on full image. This uses the new lua map format in stratagus 2.2
- Improved UI
- New menu system
<<less
Download (48.3MB)
Added: 2006-12-21 License: GPL (GNU General Public License) Price:
1041 downloads
Simple DirectMedia Layer 1.2.11

Simple DirectMedia Layer 1.2.11


Simple DirectMedia Layer project is a library that gives portable low-level access for multimedia applications. more>>
Simple DirectMedia Layer project is a library that gives portable low-level access for multimedia applications.
Simple DirectMedia Layer is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux port of "Civilization: Call To Power."
SDL supports Linux, Windows, Windows CE, BeOS, MacOS, Mac OS X, FreeBSD, NetBSD, OpenBSD, BSD/OS, Solaris, IRIX, and QNX. The code contains support for AmigaOS, Dreamcast, Atari, AIX, OSF/Tru64, RISC OS, SymbianOS, and OS/2, but these are not officially supported.
SDL is written in C, but works with C++ natively, and has bindings to several other languages, including Ada, C#, Eiffel, Erlang, Euphoria, Guile, Haskell, Java, Lisp, Lua, ML, Objective C, Pascal, Perl, PHP, Pike, Pliant, Python, Ruby, and Smalltalk.
SDL is distributed under GNU LGPL version 2. This license allows you to use SDL freely in commercial programs as long as you link with the dynamic library.
Enhancements:
- Dynamic X11 loading is only enabled with gcc 4 supporting -fvisibility=hidden. This fixes crashes related to symbol collisions, and allows building on Solaris and IRIX.
- Fixed building SDL with Xinerama disabled.
- Fixed DRI OpenGL library loading, using RTLD_GLOBAL in dlopen().
- Added pkgconfig configuration support.
<<less
Download (2.7MB)
Added: 2006-11-03 License: GPL (GNU General Public License) Price:
1125 downloads
Locale file highlighter for Vim

Locale file highlighter for Vim


Locale file highlighter for Vim is highlights ISO TR 14652-style locale input files. more>>
Glibc uses locale (or fdcc) files to define cultural conventions. The files are usualy named
xx_ZZ where xx is the ISO language code and ZZ is the ISO country code.
Main features:
- highlights only valid keys with various LC_ sections
- Shows bad < UNNNN > unicode as an error
Installation
- Copy the file to your .vim/syntax directory in a locale file type: set syntax=fdcc
Filetype detection
Slightly harder as locale files do not have any specific suffix - but heres what to do
Insert this after the Diff section in your scripts.vim file. It does initial patern matching and then looks within the file to determine if it is a locale file.
The double quotes below are escaped on this site so remove those escapes. In fact it will probably mess up all back slashes aswell.
" CVS diff
else
let lnum = 1
while getline(lnum) =~ "^? " && lnum < line("$")
let lnum = lnum + 1
endwhile
if getline(lnum) =~ ^Index:s+f+$
set ft=diff
" locale input files: Formal Definitions of Cultural Conventions
" filename must be like en_US, fr_FR@euro or en_US.UTF-8
"elseif expand("%") =~ (ll_uu($|[.@])|i18n|POSIX|translit_*)
elseif expand("%") =~ aa_aa($|[.@])|i18n$|POSIX$|translit_
let lnum = 1
while lnum < 100 && lnum < line("$")
if getline(lnum) =~ ^LC_(IDENTIFICATION|CTYPE|COLLATE|MONETARY|NUMERIC|TIME|MESSAGES|PAPER|TELEPHONE|MEASUREMENT|NAME|ADDRESS)$
setf fdcc
break
endif
let lnum = lnum + 1
endwhile
endif
endif
unlet s:line2 s:line3 s:line4 s:line5
endif
<<less
Download (0.001MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1654 downloads
Test::Unit::TestSuite 0.14

Test::Unit::TestSuite 0.14


Test::Unit::TestSuite is a unit testing framework base class. more>>
Test::Unit::TestSuite is a unit testing framework base class.

SYNOPSIS

use Test::Unit::TestSuite;

# more code here ...

sub suite {
my $class = shift;

# create an empty suite
my $suite = Test::Unit::TestSuite->empty_new("A Test Suite");

# get and add an existing suite
$suite->add_test(Test::Unit::TestSuite->new("MyModule::Suite_1"));

# extract suite by way of suite method and add
$suite->add_test(MyModule::Suite_2->suite());

# get and add another existing suite
$suite->add_test(Test::Unit::TestSuite->new("MyModule::TestCase_2"));

# return the suite built
return $suite;
}

This class is normally not used directly, but it can be used for creating your own custom built aggregate suites.

Normally, this class just provides the functionality of auto-building a test suite by extracting methods with a name prefix of test from a given package to the test runners.

<<less
Download (0.044MB)
Added: 2007-06-13 License: Perl Artistic License Price:
864 downloads
AVR Cross Development Kit 20060719

AVR Cross Development Kit 20060719


AVR Cross Development Kit is a cross development kit for the AVR RISC processor. more>>
CDK4AVR stands for Cross Development Kit for Atmels AVR RISC processor serie and should support your development with a comprehensive Assembler and C development environment for even this processor familie under Linux. It will present only free of fee tools, so you can use it without risks. Further you will find some useful OS projects and related sample code all arround AVRs inside of the example packages.
CDK4AVR collects all programms and development tools in one directory (/opt/cdk4avr) and will try to present an easy to admin installation.
My intention for CDK4AVR is / was to provide a full featurd tool chain distribution of all the free accessible resources, because the most stuff is scattered to the wide of the whole Internet and only compileable by wizards or professions.
Installation:
Each package will be provided as RPM only. It is not necessary to install all packages,but you have to install the base package cdk-avr-base every time you want to use another package. Here is an example for a typical GNU development environment:
[user@host]$ rpm -hiv cdk-avr-base-0.3-20031111.i386.rpm
[user@host]$ rpm -hiv cdk-avr-binutils-2.14-20030906.i386.rpm
[user@host]$ rpm -hiv cdk-avr-gcc-3.3.2-20031021.i386.rpm
[user@host]$ rpm -hiv cdk-avr-gcc-c++-3.3.2-20031021.i386.rpm
[user@host]$ rpm -hiv cdk-avr-gcc-colorgcc-3.3.2-20031021.i386.rpm
[user@host]$ rpm -hiv cdk-avr-libc-1.0.2-20040229.noarch.rpm
[user@host]$ rpm -hiv cdk-avr-gdb-6.0-20031019.i386.rpm
[user@host]$ rpm -hiv cdk-avr-simulavr-0.1.2.20040304cvs-20040304.i386.rpm
[user@host]$ rpm -hiv cdk-avr-avarice-2.2-20040229.i386.rpm
[user@host]$ rpm -hiv cdk-avr-uisp-20040207cvs-20040304.i386.rpm
[user@host]$ rpm -hiv cdk-avr-avrdude-4.3.0-20040229.i386.rpm
Base package -- is needed every time you will use any CDK4AVR package.
NOTE: Users of base packages with version 0.2 and prior have to update to latest version. There was a damaged (t)csh startup script. As a result of an buggy %preun script in previous packages you have to update in two cycles:
[user@host]$ rpm -hUv cdk-nios-base-0.3-20031111.i386.rpm
[user@host]$ rpm -hUv --force cdk-nios-base-0.3-20031111.i386.rpm
Enhancements:
- There are minor feature enhancements in AVR-Ada 0.4.1.
- As a result, the packeges for binutils and gcc/gnat were rebuilt.
- There are new packages for the AVR-Ada run time system and related examples.
<<less
Download (MB)
Added: 2006-07-20 License: Freely Distributable Price:
1206 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5