Ada is a structured, statically typed, imperative, wide-spectrum, and object-oriented high-level computer programming language, extended from Pascal and other languages.

learn more… | top users | synonyms

0
votes
0answers
49 views

How to get the size of a directory in Ada?

I want to get the size of a directory. Unfortunately, the Ada.Directories.Size function raises an exception raised ADA.IO_EXCEPTIONS.NAME_ERROR : file "/some/dir" does not exist when trying to ...
1
vote
2answers
61 views

call an Ada procedure from Fortran via DLL

I'm having problems with the mixed-language programming as mentioned in the title, more precisely getting arrays from Ada to the Fortran code. My Ada procedure declaration looks like: procedure ...
3
votes
1answer
65 views

How does Oberon's object oriented model differ from standard OOP?

I've been reading Wirth's books on Oberon--or at least trying to--and I'm hitting a mental road block when it comes to figuring out what is going on regarding object oriented programming in Oberon. I ...
2
votes
1answer
85 views

Ada programming in GPS

I am a beginner with using both the ada language, as well as using GPS. I can't seem to find any solid tutorials to help learn ada or GPS, but that's not my question. I have tried various simple ...
3
votes
2answers
74 views

Defining a modular type within a generic package

In brief, why doesnt this work: generic Max : in Positive; package Modular_Gen_Issue is procedure Foo; private type Mod_Thing is mod Max; -- NOK type Int_Thing is new Integer range 0 .. ...
1
vote
1answer
40 views

In Ada (GNAT), using pragma Overflow_Mod / infinite precision intermediate calculations

I'm trying to convert a (small) numerator and denominator to a numerator in terms of a large constant denominator, chosen to be divisible by most small numbers and to be just under 2**63. Since that's ...
7
votes
2answers
86 views

Is there a difference between “and” vs “and then” in an IF statement

I'm learning Ada by fixing bugs and reading code. I've noticed some if statements that are ganged with "and" and others with "and then". similarly, there is "or" and other places there is "or else". ...
1
vote
2answers
60 views

Gnat GPL Gtkada: where did Gtk.Builder.Get_Widget go?

I am trying to build a simple Gtkada UI from examples found on elsewhere on the Internet. For instance this one. The examples use: Gtk.Widget.Show_All (Get_Widget (Builder, "main_window")); which ...
0
votes
2answers
68 views

ADA: multiple tasks

I have a problem in Ada concurrent programming. I have to write a simple program in Ada that creates N of tasks of the same type, where N is the input from keyboard. The problem is that I have to know ...
0
votes
2answers
56 views

Log to files in Ada

Is there any way to make logs to text files in Ada? I'm doing a academic work and i need that functionality. I think that I need some library like Ada.IO. Some help please
0
votes
1answer
61 views

Catching Memory Exceptions in C Code From Ada

I have some ada code that interfaces with some C functions, and I am having trouble catching memory exceptions/SIGSEGV signals in the ada code that are generated/raised by the C code. I am using ada ...
0
votes
1answer
38 views

Compiling ada library gnatcoll-json.adb with gnat on OS/X

I've got the source from Adacore, so it should work - I've left an 'issue' on Adacore as well, but it might take some time to get a resolution there. I suspect that I might be doing something wrong, ...
5
votes
1answer
80 views

Fixed point type not multiplying correctly

I'm new to Ada, and have been trying out the fixed-point "delta" types. Specifically, I've created a 32-bit delta type range 0.0 .. 1.0. However, when I try to square certain values, I get a ...
1
vote
1answer
57 views

How to split a string using an integer array?

I am trying to split a string using an integer array as mask. The task is simple but I am not accustomed to ADA (which is a constraint). Here is my code. It works exept that I have an one character ...
1
vote
2answers
46 views

Convert Day_Duration to Integer in Ada

I have the current time in seconds like this: The_Seconds : DAY_DURATION; And I wish to convert it to an Integer. How can I do it? Thank you.
1
vote
0answers
73 views

Java to Ada Converter/Translator

Is there a tool, that translates Java code to Ada? I need to implement an algorithm for collision avoidance for a miniature electric railway and the existence of such a tool would save me a lot of ...
0
votes
1answer
46 views

Error when compiling in AdaGIDE using win32

I'm experiencing some troubles with AdaGIDE compiler and its libraries. I installed GNAT 2013 and AdaGIDE 7.45 on Windows XP. When I'm trying to compile any code that requires win32 (eg. with ...
0
votes
2answers
67 views

How to reinitialize tasks in ADA

I have a simple looking question: I have a few tasks operating simultaneously in ADA. Together they create a simulation representing an election of an imaginary country. I'd like to restart the whole ...
0
votes
3answers
53 views

Bug with the PHP exec() function for an ADA program

I really need some help for a problem. I'm trying to use the exec() PHP function which is directly integrated on PHP, but it doesn't work. I've tried this : $directory = ...
1
vote
1answer
64 views

Newline while writing a text file in Ada

I am opening a text file in Ada with the following code: Open (File => out_parcial_variante1, Name => "c.txt", Mode => append_file); put(File => out_parcial_variante1, Item=> "r"); ...
0
votes
1answer
52 views

Ada index check failed

when attempting to run this program i get the error: raised CONSTRAINT_ERROR : bifid.adb:55 index check failed I'm not really sure where this error is coming from or what it exactly means. The ...
1
vote
1answer
94 views

Function reading from standard input without any “in” parameters

Perhaps this is simple, and I am just missing some basic information, but I can't seem to find the answer anywhere. I'm writing a Get_Word function for class, here is the relevant section of the spec ...
2
votes
3answers
79 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 ...
3
votes
1answer
73 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
73 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 ...
5
votes
2answers
80 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
109 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
135 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 ...
3
votes
2answers
119 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
105 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
121 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
73 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
90 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
109 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
114 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
175 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
123 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
145 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
86 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
103 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
171 views

Ada Function vs Procedure [closed]

Can anyone explain me the difference between the Ada "procedure" and "function"? Please help.
1
vote
3answers
68 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
387 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
67 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
76 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
255 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
94 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
79 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
141 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
212 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 ...

1 2 3 4 5 11