Ada is a structured, statically typed, imperative, wide-spectrum, and object-oriented high-level computer programming language, extended from Pascal and other languages.
2
votes
3answers
40 views
Record containing access to instantiation of generic package based on that record
This is really an annoying problem. I have a record type that wraps various base types and now I need it to be able to store a vector (from Ada.Containers.Vectors) in itself! I guess that's not ...
2
votes
1answer
41 views
Ada actual for “S” must be a variable
So here is a piece of my body file. I am getting the error "words.adb:75:42: actual for "S" must be a variable".
procedure Remove_Character(S : in out Ustring; C : in Character; Successful : out ...
4
votes
2answers
50 views
Trying to add text at the end of a file in Ada
I am using Ada for the first time and have a txt file with the following written on it
23.000000#:599.659058,-67.651642
I want to add an R, in a newline in the archive so it ends like this
...
4
votes
2answers
66 views
How to organize Ada project in directories?
How can I load two packages with the same name but located in seperate folders?
Example:
/src/alpha/foopackage.ads
/src/beta/foopackage.ads
I then would like to use foopackages using:
with ...
0
votes
3answers
97 views
Forcing Ada to use minimum spec size for enumerated types with gnat 4.4
I have an enumerated type that needs to be 4 bits but when I declare a variable of that type the compiler assigns that variable 8 bits.
Below is a simplified version of the code.
subtype ...
4
votes
1answer
104 views
Ada equivalent of local static variable from C/C++
I'm coming from C/C++ on embedded systems and all the time inside a function we use a static variable so that the value is retained throughout calls.
In Ada, it seems like this is only done with the ...
2
votes
2answers
87 views
How to implement interface in Ada?
Dont know what this oop pattern is called but how can I do the same pattern in Ada?
For example this code:
interface Vehicle{
string function start();
}
class Tractor implements Vehicle{
...
3
votes
2answers
90 views
Is is possible to have a child package as a separate compilation unit in Ada
I have a main package with a normal spec and body file. I am trying to create child packages of the parent, but want them in a separate compilation file(s). I can easily get it done if it is just a ...
3
votes
2answers
90 views
Ada: select then abort statement
I have a question regarding the "select then abort" language construct in Ada. The task I'm using looks something like:
select
delay 1.0;
do something with the partial result;
then abort
loop
...
0
votes
4answers
68 views
How to change the range of the range type?
Lets say I have
function x return boolean is
type range0 is range 1..1;
begin
canse x is
when 4=> range0:=firstArray'range;
when 5=> ...
1
vote
1answer
78 views
Ada beginner Stack program
Basically, I have 2 files ( .adb and .ads). I am totally new to Ada and also how to compile 2 files. The program is of a basic stack implementation. I got this compile error when I compiled the .adb ...
1
vote
1answer
90 views
How does Ada implement 'mod' and 'range' types? What are the performance implications?
In Ada you can define so called 'mod' and 'range' types:
type Unsigned_n is mod 2**n;
type Range_Type is range -5 .. 10;
How are these implemented at the language machine level? What kind of ...
1
vote
2answers
95 views
Ada Compiler not installed on this system
I've had some difficulty trying to obtain a working Ada compiler.
I had been attempting to install avr-ada on a Windows system. I've asked questions and been provided some good suggestions, but not ...
1
vote
2answers
139 views
Building a Binary Expression Tree in Ada
I am attempting to build an Expression tree from fully parenthesized infix notation in Ada. I am building the tree recursively. Each node has a data field, and a pointer to left and right children. ...
0
votes
2answers
121 views
How to find zombies in Ada?
Im trying to use the System.Adress_image to list all the adress of the allocated objects in the program.
However I can only print the adress for variables that I have. For example I have a stack and ...
1
vote
4answers
125 views
Get words out of a file in Ada
I have a folder with files containing some text. I am trying to go through all the files one after the other, and count how many times we see every word in the text files.
I know how to open the ...
2
votes
1answer
80 views
Ada unconstrained type
Hello Im new to ada and I am trying to create some kind of unconstrained array and I can't figure out how to do it in ada.
package data_puzzle is
type rotation is private;
type ...
1
vote
2answers
87 views
cannot generate code for file
Please have a look at the following code
Formula.ads
package Formula is
procedure CalculateFormula;
end Formula;
Formula.adb
with Ada.Text_IO; use Ada.Text_IO;
with Formula; use Formula;
...
-3
votes
1answer
142 views
Ada Function vs Procedure [closed]
Can anyone explain me the difference between the Ada "procedure" and "function"?
Please help.
1
vote
3answers
61 views
Select a letter in a string
I need to create an hash function in Ada that takes a string and returns an integer.
what I did so far is :
function hash(Word: unbounded string) return Integer is
h := 5381
c := (first ...
4
votes
4answers
280 views
Error 0x800706F7 “The stub received bad data” on Windows XP SP3
In my VB6 application I make several calls to a COM server my team created from a Ada project (using GNATCOM). There are basically 2 methods available on the COM server. Their prototypes in VB are:
...
1
vote
1answer
65 views
literal string expected error
Please have a look at the following code
with text_io;
use text_io;
procedure hello is
begin
put_line("hello");
new_line(3);
end hello;
When I click "build all" in GPS IDE, I get this error
...
1
vote
2answers
73 views
Ada loop on number of type float untill it reach zero
hi i need help with this simple iteration problem
am trying to divide
number:Float:=55.0;
Loop
number:=number/3.0;
put(number);
exit when number<=0.0;
end loop;
i want it to exit at the first ...
4
votes
3answers
205 views
Programming Arduino with Ada
I am am unable to get avr-elf-windows and WinAVR to work. I have managed to build the example supplied with avr-elf-windows (ATmega2560). But if I try and expand to use another chip or start using the ...
0
votes
1answer
85 views
Ada tasks and termination
I've been reading a little bit about tasks in ada at http://en.wikibooks.org/wiki/Ada_Programming/Tasking and thought that i'll write a little thing with tasks myself. Since i've read a small course ...
0
votes
1answer
73 views
ada 95 Put (Item : in String) vs Put (String)
in Ada 95
is there any difference between Put (Item : in String) and Put (String)? or they are exactly the same thing?
0
votes
1answer
137 views
Storage Error - First Depth Search Algorithm
I'm currently working on a algorithm which should solve a 3D puzzle.
However I've encountered a problem, the algorithm I use is a First Search Depth and it seems to be working well until I get "raised ...
3
votes
3answers
188 views
Program Exit with Status 255 C++ Main with Ada
I have a set of single threaded C++ mains that have a bulk of their code developed in Ada. This is being built in Atego (Rational) Apex Duo, and targets 32 bit RHEL 6.3 Linux. The exec is a Class ...
0
votes
0answers
81 views
Make Pyparsing handle Left-Recursive Grammar Rules
I'm currently implementing an Ada 2005 parser using Pyparsing and the reference manual grammar rules. We need this in order to analyze and transform parts of our aging Ada-codebase to C/C++.
However, ...
1
vote
1answer
110 views
Return a fat/thick pointer as an out parameter
I am having trouble creating a thick pointer. My current set of declarations look like this:
type Index_Typ is mod 20; -- will be larger in real life
type Data_Buffer_Typ is array (Index_Typ range ...
1
vote
1answer
129 views
Unable to read a USB com port using GNAT Ada
I'm attempting to set up a USB serial port using:
GNAT.SERIAL_COMMUNICATIONS.
I am able to open the port but when I try to set attributes of the port I get the following exception
raised ...
2
votes
1answer
171 views
Stack Overflow when Pyparsing Ada 2005 Scoped Identifiers using Reference Manual Grammar
I'm currently implementing an Ada 2005 parser using Pyparsing and the reference manual grammar rules. We need this in order to analyze and transform parts of our aging Ada-codebase to C/C++.
Most ...
1
vote
1answer
93 views
Issues assigning a string to a linked list in Ada
I'm trying to bring in a string and assign it , character by character, to a linked list, declared like so:
type lstring is private;
type lstring_node;
type lstring_access is access lstring_node;
...
0
votes
1answer
50 views
Undefined package in Ada
I am really confused when the GNAT keeps telling me that I have an undefined error when I try to import a package.
This is the where the error occurs in the source code:
with Ada.Strings.Unbounded; ...
1
vote
1answer
73 views
Limits of Ada Fixed Point Type
Reading this http://en.wikibooks.org/wiki/Ada_Programming/Types/delta
has got me wondering what the limit value of delta is.
For example
delta 127 range 0..1_000_000;
needs one byte to hold the ...
1
vote
1answer
65 views
Ada minimal task synchronization (performance related)
For a hobby interpreter project I am looking for advice on a performance-related question regarding task synchronization. A scheduler must map new green tasks to real tasks, each of which holds its ...
1
vote
1answer
53 views
Tasking on Windows and the -gnatP switch
What's the deal with the -gnatP (enable polling for asynch tasking operations) switch?
I'm working on a fairly large game project using GNAT, and the documentation claims that this switch is needed ...
1
vote
3answers
83 views
How to set a pragma to constrain Ada's functionality to Pascal
I intend to use Ada for some programs. I remember reading somewhere that with pragmas you can set compiler instructions to optimize your program. More specifically, I remember reading that if you need ...
3
votes
1answer
61 views
Ada Numeric Literals and Underline
This is from the online Ada reference manual:
http://www.adaic.org/resources/add_content/standards/05rm/RM.pdf (section 2.3)
A decimal_literal is a numeric_literal in the conventional decimal ...
2
votes
2answers
96 views
Simple Ada program with wrong output
Complete beginner to Ada here.
I am trying to compile and run a simple Ada program, from here: http://www.dwheeler.com/lovelace/s1sf.htm
Here is the code:
-- Demonstrate a trivial procedure, with ...
-1
votes
2answers
82 views
Create an SVG file with ada [closed]
I would like to learn how to create an SVG image using ada code.
Any help is appriciated !
Thanks
1
vote
2answers
84 views
IDE for GNAT 3.15p Ada compiler
I am using the GNAT 3.15p Ada compiler which is suggested for RTRT. I was using GPS IDE with another version of the GNAT Ada compiler. Is there any IDE available for the GNAT 3.15p compiler? Can I use ...
0
votes
1answer
95 views
Error during Gnat Ada compiler installing
I'm trying to install GNAT Compiler for Ada programing, but when I launch it I get the following error: "Cannot create config directory C:/users/@#$%@#%#@/.gps/ Exiting...".
Somebody knows the ...
1
vote
2answers
117 views
Ada package function identifier expected
Learning Ada and trying to make a stack ADT and I'm using this webpage to figure it out.
http://www.functionx.com/ada/Lesson06.htm
eightqueens.adb
with Ada.Text_IO;
use Ada.Text_IO;
with Stack;
use ...
3
votes
2answers
125 views
Ada sin(x) Computing with Taylor-series
I'm an absolute beginner in Ada and I'm trying to calculate sin(x) [sin(3) now] by using Taylor-series, but I just can't get it to work.
So here is my procedure:
with Ada.Float_Text_IO;
with Mat;
...
1
vote
1answer
107 views
Ada Return Concatenated String of Strings
I am trying to finish up a homework assignment, and am down to the last part. First, I'll show you the type that I am dealing with:
TYPE Book_Collection IS
RECORD
Books : ...
0
votes
1answer
51 views
GPS Ada source overwritten with NULL characters
I have an assignment that I have been working on for a Legacy Software class. I had pretty much finished it a few days ago. I went to open the project today, and my main ADB file (ada source file) is ...
2
votes
1answer
67 views
Debugging in GPS IDE
I'm using GPS IDE for Ada 95 coding. When I try to put a break point in a .adb file, I'm getting a message "No source file named filename.adb". I built the project and initialized the debugger. What ...
1
vote
1answer
54 views
Ada - Convert File_Size to Integer
I'm using Ada's Directories library and Command_Line library, and reading the character count (size) of a text file given in the command line, then assigning it to an integer.
Character_Count := ...
0
votes
0answers
51 views
Recursion tree in ada [closed]
I need to generate a tree in ada using recursion so that I can create a maze.
I don't know how to start having really little knowledge. If you can help me start, it would be greatly appreciated!
...

