content stringlengths 23 1.05M |
|---|
package impact.d3.collision.Detector
--
--
--
is
end impact.d3.collision.Detector;
|
----------------------------csc410/prog4/as4.adb----------------------------
-- Author: Matthew Bennett
-- Class: CSC410 Burgess
-- Date: 10-05-04 Modified: 10-22-04
-- Due: 10-12-04
-- Desc: Assignment 4: DJIKSTRA'S STABILIZING ALGORITHM
--
-- a nonproduction implementation of
-- DJIKSTRA's algorithm whic... |
with Ada.Integer_Text_IO,
Ada.Text_IO,
Constraint_Engine;
use Ada.Integer_Text_IO, Ada.Text_IO;
procedure Example is
package Test_Engine renames Constraint_Engine;
use Test_Engine;
P : Type_Problem;
S : Var_Vector.Vector;
begin
P.Add_Var(Low_Interval => 0,
Top_Interval => 40... |
--
-- The author disclaims copyright to this source code. In place of
-- a legal notice, here is a blessing:
--
-- May you do good and not evil.
-- May you find forgiveness for yourself and forgive others.
-- May you share freely, not taking more than you give.
--
with Ada.Containers;
with Ada.Strings.Unbo... |
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
Ch : Character;
Available : Boolean;
Ada.Text_IO.Get_Immediate (Ch, Available);
|
-- { dg-do compile }
-- { dg-options "-gnatct" }
package Private1.Sub is
package Nested is
type T is limited private;
function "=" (X, Y : T) return Boolean;
private
type T is new Private1.T;
end Nested;
end Private1.Sub;
|
with Common; use Common;
package Int64_Parsing with SPARK_Mode is
procedure Parse_Int64 (S : String; V : out Int64; Error : out Boolean) with
Pre => S'Last < Integer'Last;
function Print_Int64 (V : Int64) return String;
end Int64_Parsing;
|
------------------------------------------------------------------------------
-- Copyright (C) 2020 by Heisenbug Ltd. (gh+spat@heisenbug.eu)
--
-- This work is free. You can redistribute it and/or modify it under the
-- terms of the Do What The Fuck You Want To Public License, Version 2,
-- as published by Sam Hoc... |
with AUnit.Test_Suites; use AUnit.Test_Suites;
package Rejuvenation_Workshop_Suite is
function Suite return Access_Test_Suite;
end Rejuvenation_Workshop_Suite;
|
------------------------------------------------------------------------------
-- AGAR GUI LIBRARY --
-- A G A R . I N P U T _ D E V I C E --
-- S p e c --
----... |
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
with Stocks_Materiel; use Stocks_Materiel;
-- Auteur:
-- Gérer un stock de matériel informatique.
--
procedure Scenario_Stock is
Mon_Stock : T_Stock;
begin
-- Créer un stock vide
Creer (Mon_Stock);
pr... |
-- CC3605A.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimit... |
pragma Style_Checks (Off);
-- This spec has been automatically generated from ATSAMD51G19A.svd
pragma Restrictions (No_Elaboration_Code);
with HAL;
with System;
package SAM_SVD.ICM is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype ICM_CFG_BBC_Field is HAL.UInt4;
-... |
with STM32GD.GPIO;
with STM32GD.GPIO.Pin;
with STM32GD.USART;
with STM32GD.USART.Peripheral;
with STM32GD.SPI;
with STM32GD.SPI.Peripheral;
with Drivers;
with Drivers.RFM69;
with Ada.Interrupts.Names;
package Peripherals is
package GPIO renames STM32GD.GPIO;
package RFM69_RESET is new GPIO.Pin (Pin => GPIO.Pin_... |
package body Util
is
Invalid_Input_Data : exception;
---------
-- B2S --
---------
function B2S (Data : LSC.Types.Bytes) return String
is
use type LSC.Types.Byte;
B, Nibble : LSC.Types.Byte;
function Hex_Digit (D : LSC.Types.Byte) return Character is
(case D is
whe... |
with Trendy_Test;
package Trendy_Test.Assertions is
-- Forcibly fail a test.
procedure Fail (Op : in out Operation'Class;
Message : String;
Loc : Source_Location := Make_Source_Location);
-- A boolean check which must be passed for the test to contin... |
with Ada.Exception_Identification.From_Here;
with Ada.Unchecked_Conversion;
package body System.Stream_Attributes is
pragma Suppress (All_Checks);
use Ada.Exception_Identification.From_Here;
use type Ada.Streams.Stream_Element_Offset;
type IO_Boolean is new Boolean;
for IO_Boolean'Size use
((Boole... |
with Ada.Text_IO;
use Ada.Text_IO;
-- Dans ce programme, les commentaires de spécification
-- ont **volontairement** été omis !
procedure Comprendre_Mode_Parametre is
function Double (N : in Integer) return Integer is
begin
return 2 * N;
end Double;
procedure Incrementer (N : in out Integer)... |
-----------------------------------------------------------------------
-- html-selects -- ASF HTML UISelectOne and UISelectMany components
-- Copyright (C) 2011, 2013, 2014 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License")... |
-- Copyright (c) 2006-2020 Maxim Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
package body JWS.Integers is
type Double is mod 2 ** (2 * Digit_Size);
subtype Double_Digit is Double range 0 .. 2 ** Digi... |
type Point is tagged record
X : Integer := 0;
Y : Integer := 0;
end record;
|
package body GMP.Random is
use type C.unsigned_long;
function Initialize return Generator is
begin
return (State => Initialize);
end Initialize;
function Initialize (Initiator : Long_Integer) return Generator is
begin
return (State => Initialize (Initiator));
end Initialize;
procedure Reset (Gen : in o... |
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
-- part of OpenGLAda, (c) 2017 Felix Krause
-- released under the terms of the MIT license, see the file "COPYING"
with System;
with Interfaces.C;
with GL.Low_Level;
-- This package is incomplete. As I do not develop or test under Linux, this
-- has very low priority. Perhaps someone wants to help out...
package G... |
with
openGL.Errors,
openGL.Tasks,
openGL.IO,
GL.Binding,
GL.lean,
GL.Pointers,
ada.unchecked_Deallocation;
package body openGL.Texture
is
use GL,
GL.lean,
GL.Pointers;
----------------
-- Texture Name
--
function new_texture_Name return texture_Name... |
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
pragma License (Unrestricted);
-- with Ada.Streams;
with Ada.Exception_Identification;
private with System.Unwind;
package Ada.Exceptions is
pragma Preelaborate;
-- type Exception_Id is private;
-- pragma Preelaborable_Initialization (Exception_Id);
subtype Exception_Id is Exception_Identification.Exception_I... |
------------------------------------------------------------------------------
-- --
-- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- ... |
generic
type Gauss_Index_61 is range <>;
type Real is digits <>;
type Gauss_Values is array (Gauss_Index_61) of Real;
package Gauss_Nodes_61 is
Gauss_Weights_61 : constant Gauss_Values :=
(0.0013890136_9867700762_4551591226_760,
0.0038904611_2709988405_1267201844_516,
0.0066307039_159312... |
with Ada.Text_IO;
with Ada.Float_Text_IO;
with Eval;
with My_Custom_Int;
procedure Eval_Main is
package Eval_Integer is new Eval (T => Integer, Image => Integer'Image,
"=" => "=", "+" => "+", "-" => "-", "*" => "*", "/" => "/");
package Eval_Float is new Eval (T => Float, Image => Float'Image,
"=" ... |
------------------------------------------------------------------------------
-- waiters.adb
--
-- Implementation of the waiters.
------------------------------------------------------------------------------
with Philosophers, Cooks, Host, Meals, Orders, Reporter, Protected_Counters;
use Philosophers, Cooks, ... |
--
-- Raytracer implementation in Ada
-- by John Perry (github: johnperry-math)
-- 2021
--
-- implementation for Cameras, that view the scene
--
-- local packages
with RayTracing_Constants; use RayTracing_Constants;
package body Cameras is
function Create_Camera(Position, Target: Vector) return Camera_Type is
... |
package platform is
function get_ui_specification_filepath return string;
function get_covid_raw_data_filepath return string;
end;
|
-- Copyright 2015,2016,2017 Steven Stewart-Gallus
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable ... |
with GESTE;
with GESTE.Grid;
with GESTE.Tile_Bank;
with Game_Assets;
with Game_Assets.Tileset;
with Game_Assets.Tileset_Collisions;
with Game_Assets.track_1;
package body Levels is
Tile_Bank : aliased GESTE.Tile_Bank.Instance
(Game_Assets.Tileset.Tiles'Access,
Game_Assets.Tileset_Collisions.Tiles'Acces... |
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
package body Animals.Humans is
function Make
(Name : String;
Sex : Sex_Type) return Human
is
H : Human;
begin
H.Number_Of_Legs := 2;
H.Number_Of_Wings := 0;
H.Name := To_Unbounded_String (Name);
H.Sex := Se... |
with AUnit.Test_Suites;
generic
with function Suite return AUnit.Test_Suites.Access_Test_Suite is <>;
procedure AUnit.Run.Generic_Runner;
|
package openGL.Conversions
is
function to_Vector_4 (From : in rgba_Color) return Vector_4;
function to_Vector_4 (From : in lucid_Color) return Vector_4;
function to_Vector_3 (From : in rgb_Color) return Vector_3;
function to_Vector_3 (From : in Color) return Vector_3;
end openGL.Conversions;
|
package body Meassure_Velocity is
procedure Retrieve_Velocity (Velocity_Z : out Float) is
begin
--if Imu.Gyro.Read.Available() not true then
-- raise Gyro_Not_Available ;
--end if;
--Imu.gyro.read(data);
--z_gyro = gyro.data(z_angle);
--return z_gyro;
Z_Coordinate := 2.0;
Velocity_Z ... |
with Ada.Command_Line,
Ada.Text_IO;
with URL;
procedure Test_URL_Decode is
use Ada.Command_Line, Ada.Text_IO;
begin
if Argument_Count = 0 then
Put_Line (URL.Decode ("http%3A%2F%2Ffoo%20bar%2F"));
else
for I in 1 .. Argument_Count loop
Put_Line (URL.Decode (Argument (I)));
end ... |
with Ada.Unchecked_Conversion;
package body Inline1_Pkg is
type Ieee_Short_Real is
record
Mantisse_Sign : Integer range 0 .. 1;
Exponent : Integer range 0 .. 2 ** 8 - 1;
Mantisse : Integer range 0 .. 2 ** 23 - 1;
end record;
for Ieee_Short_Real use
record... |
function Get_String return String is
Line : String (1 .. 1_000);
Last : Natural;
begin
Get_Line (Line, Last);
return Line (1 .. Last);
end Get_String;
function Get_Integer return Integer is
S : constant String := Get_String;
begin
return Integer'Value (S);
-- may raise exception Constraint_Error if valu... |
with sys_h, Interfaces.C.Strings, Interfaces.C.Extensions;
use sys_h, Interfaces.C;
package body Libtcod.Clipboard is
use type Extensions.bool;
---------
-- set --
---------
procedure set(value : String) is
c_value : aliased char_array := To_C(value);
status : constant Extensions.bool
... |
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
package DFA
with SPARK_Mode => On
is
-- This package illustrates the basics of data-flow analysis (DFA) in SPARK
function F1 (X : in Integer) return Integer;
function F2 (X : in Integer) return Integer;
end DFA;
|
separate (Numerics.Sparse_Matrices)
-- function Minus (Left : in Sparse_Matrix;
-- Right : in Sparse_Matrix) return Sparse_Matrix is
-- Result : Sparse_Matrix := Right;
-- begin
-- for X of Result.X loop
-- X := -X;
-- end loop;
-- return Left + Result;
-- end Minus;
function Minus (Left... |
with
FLTK.Event,
Interfaces.C,
System;
use type
Interfaces.C.unsigned_long,
System.Address;
package body FLTK.Widgets.Groups.Text_Displays.Text_Editors is
procedure text_editor_set_draw_hook
(W, D : in System.Address);
pragma Import (C, text_editor_set_draw_hook, "text_ed... |
------------------------------------------------------------------------------
-- A d a r u n - t i m e s p e c i f i c a t i o n --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- ... |
with SubmarineSubSystem; use SubmarineSubSystem;
with Ada.Text_IO; use Ada.Text_IO;
package body SubmarineSubSystem with SPARK_Mode is
-----------------------------------------------------------------------------------------------
-----------------------------------DOOR FUNCTIONALITY--------------------------------... |
-- C95086E.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimit... |
------------------------------------------------------------------------------
-- A d a r u n - t i m e s p e c i f i c a t i o n --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- ... |
with Ada.Text_IO;
with GNAT.OS_Lib;
package body GPR_Tools.Gprslaves.Configuration is
HOME : GNAT.OS_Lib.String_Access := GNAT.OS_Lib.Getenv ("HOME");
Config_File_Path : constant String := Ada.Directories.Compose (HOME.all, Config_File_Name);
---------------
-- Trace_Log --
---------------
... |
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2020, AdaCore --
-- --
-- ... |
with Ada.Numerics.Elementary_Functions; use Ada.Numerics.Elementary_Functions;
with Ada.Numerics; use Ada.Numerics;
package Angle is
function To_Degrees (Radians : Float) return Float;
function To_Radians (Degrees : Float) return Float;
function Find_Angle (X_Coordinate, Y_Coordinate : Float) return Float;
pr... |
-- This file is generated by SWIG. Please do not modify by hand.
--
with xcb.Pointers;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.pointer_Pointers is
-- xcb_connection_t_Pointer_Pointer
--
package C_xcb_connection_t_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Int... |
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
pragma License (Unrestricted);
-- implementation unit
with Ada.IO_Exceptions;
with Ada.IO_Modes;
with Ada.Streams.Naked_Stream_IO.Standard_Files;
with System.Native_IO;
with System.Native_Text_IO;
package Ada.Naked_Text_IO is
-- the parameter Form
Default_Form : constant System.Native_Text_IO.Packed_Form := (... |
with agar.core.error;
with agar.core;
package body demo is
use type agar.gui.window.window_access_t;
procedure init
(name : string;
video_width : integer := 640;
video_height : integer := 480;
window_width : integer := 320;
window_height : integer := 240) is
begin
if no... |
-- AOC 2020, Day 21
with Day; use Day;
procedure main is
begin
ingredient_count("input.txt");
end main;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- ... |
with Ada.Text_IO;
with Threadsafe_Containers; use Threadsafe_Containers;
procedure Circbuf_Example is
circbuf : Threadsafe_Circbuf (3);
task ProducerTask;
task ConsumerTask;
task body ProducerTask is
begin
for idx in 1..5 loop
Ada.Text_IO.Put_Line("Producing!");
circbuf.Insert(... |
pragma Warnings (Off);
pragma Style_Checks (Off);
-- Space vehicle #002 3D model. Copyright (c) Gautier de Montmollin 1999 - 2000
-- CH - 2000 Neuchatel
-- SWITZERLAND
-- Permission granted to use the herein contained 3D model for any purpose,
-- provided this copyright note remains attached and unmodi... |
-------------------------------------------------------------------------------
-- package body Chi_Gaussian_CDF, CDF of Normal and Chi-square distributions
-- Copyright (C) 1995-2018 Jonathan S. Parker
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is her... |
-- Copyright (c) 2020-2021 Bartek thindil Jasicki <thindil@laeran.pl>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless req... |
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- ... |
-- ----------------------------------------------------------------
-- json_create.adb
--
-- Jan/05/2014
--
-- ----------------------------------------------------------------
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Text_IO.Text_Streams; use Ada.Text_IO.Text_Streams;
with Ada.Command_Line;
--... |
-----------------------------------------------------------------------
-- stemmer-stemmer-tests -- Tests for stemmer
-- Copyright (C) 2020 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file ex... |
-- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../../License.txt
--
-- Some of these definitions originate from the Matresha Project
-- http://forge.ada-ru.org/matreshka
-- Used with permission from Vadim Godunko <vgodunko@gmail.com>
with System;
with Interfaces.C.Strings;... |
with Asynchronous_Fifo;
with Ada.Text_Io; use Ada.Text_Io;
procedure Asynchronous_Fifo_Test is
package Int_Fifo is new Asynchronous_Fifo(Integer);
use Int_Fifo;
Buffer : Fifo;
task Writer is
entry Stop;
end Writer;
task body Writer is
Val : Positive := 1;
begin
loop
... |
package Loop_Optimization8_Pkg2 is
type Array_T is array (Natural range <>) of Integer;
type Obj_T (Length : Natural) is
record
Elements : Array_T (1 .. Length);
end record;
type T is access Obj_T;
function Length (Set : T) return Natural;
function Index (Set : T; Position : Natural) return ... |
package Giza.Bitmap_Fonts.FreeSerifBold12pt7b is
Font : constant Giza.Font.Ref_Const;
private
FreeSerifBold12pt7bBitmaps : aliased constant Font_Bitmap := (
16#7F#, 16#FF#, 16#77#, 16#66#, 16#22#, 16#00#, 16#6F#, 16#F7#, 16#E3#,
16#F1#, 16#F8#, 16#FC#, 16#7E#, 16#3A#, 16#09#, 16#04#, 16#0C#, 16#40#,
16#CC... |
with Numerics, Ada.Text_IO, Auto_Differentiation.Integrator, Chebyshev;
use Numerics, Ada.Text_IO, Auto_Differentiation.Integrator, Chebyshev;
procedure Auto_Differentiation.Pendulum is
use Real_IO, Real_Functions;
-- Set Up Parameters -----------------
Control : Control_Type
:= (N => 1, Dt => 0.1,... |
with Interfaces.C.Strings;
package body STB.Image is
----------
-- Load --
----------
function Load (Filename : String;
X, Y, Channels_In_File : out Interfaces.C.int;
Desired_Channels : Interfaces.C.int)
return System.Address
is
function C_Lo... |
--- gnatvsn.adb.orig 2013-07-16 03:35:21.000000000 +0000
+++ gnatvsn.adb
@@ -53,32 +53,13 @@ package body Gnatvsn is
" FOR A PARTICULAR PURPOSE.";
end Gnat_Free_Software;
- type char_array is array (Natural range <>) of aliased Character;
- Version_String : char_array (0 .. Ver_Len_Max - 1);
- -- ... |
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- ... |
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- ... |
package GMP
--
--
--
is
end GMP;
|
with Aof.Core.Signals;
with Derived_Objects;
package Slots is
procedure Xaa;
procedure Xab;
procedure Xac;
Chained_Signal : aliased Aof.Core.Signals.Empty.Signal;
Obj_1 : aliased Derived_Objects.Derived_Object;
Obj_2 : aliased Derived_Objects.Derived_Object;
end Slots;
|
pragma License (Unrestricted); -- BSD 3-Clause
-- translated unit from dSFMT (dSFMT-params19937.h)
with Ada.Numerics.dSFMT;
package Ada.Numerics.dSFMT_19937 is
new dSFMT (
MEXP => 19937,
POS1 => 117,
SL1 => 19,
MSK1 => 16#000ffafffffffb3f#,
MSK2 => 16#000ffdfffc90fffd#,
FIX1 => 1... |
with
Interfaces.C.Strings,
System.Address_To_Access_Conversions,
FLTK.Widgets.Groups.Windows,
FLTK.Images;
use type
Interfaces.C.int,
Interfaces.C.unsigned,
Interfaces.C.Strings.chars_ptr,
System.Address;
package body FLTK.Widgets is
function "+"
(Left, Right : in... |
------------------------------------------------------------------------------
-- --
-- Hardware Abstraction Layer for STM32 Targets --
-- --
-- ... |
package body GNAT.Dynamic_HTables is
package body Simple_HTable is
function R (Position : Maps.Cursor) return Element;
function R (Position : Maps.Cursor) return Element is
begin
if Maps.Has_Element (Position) then
return Maps.Element (Position);
else
ret... |
package Simple_Expression_Range is
type Constrained_Type is new Integer range 1..10;
end Simple_Expression_Range;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- ... |
--logic for exponents to work correctly
package body Integer_Exponentiation is
-- int^int
procedure Exponentiate (Argument : in Integer;
Exponent : in Natural;
Result : out Integer) is
begin
Result := 1;
for Counter in 1 ..... |
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- ... |
package Ada_Module is
procedure Say_Hello;
pragma Export (C, Say_Hello, "say_hello");
end Ada_Module; |
-------------------------------------------------------------------------------
-- Copyright 2021, The Trendy Terminal Developers (see AUTHORS file)
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the Lic... |
with ada.text_io, ada.integer_text_io;
use ada.text_io, ada.integer_text_io;
procedure sacar_ficha is
begin
put("Ficha sale");
end sacar_ficha; |
private with Ada.Finalization;
private with Ada.Streams;
package GMP.Z is
pragma Preelaborate;
type MP_Integer is private;
-- conversions
function To_MP_Integer (X : Long_Long_Integer) return MP_Integer;
-- formatting
function Image (Value : MP_Integer; Base : Number_Base := 10) return String;
function... |
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- ... |
-- Copyright 2016-2021 Bartek thindil Jasicki
--
-- This file is part of Steam Sky.
--
-- Steam Sky 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 3 of the License, or
-- (a... |
------------------------------------------------------------------------------
-- Copyright (c) 2014, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- p... |
-- POK header
--
-- The following file is a part of the POK project. Any modification should
-- be made according to the POK licence. You CANNOT use this file or a part
-- of a file for your own project.
--
-- For more information on the POK licence, please see our LICENCE FILE
--
-- Pleas... |
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- ... |
with BDD.Asserts; use BDD.Asserts;
-- with BDD.Tables; use BDD.Tables;
with RTCH.Maths.Vectors; use RTCH.Maths.Vectors;
with RTCH.Maths.Points; use RTCH.Maths.Points;
package body RTCH.Maths.Tuples.Steps is
procedure Given_Tuple_A (X, Y, Z, W : Float) is
begin
A := Tuple'(X, Y, Z, W);
end Given_Tuple... |
with NPC_PC; use NPC_PC;
with ada.text_io; use ada.text_io;
with ada.integer_text_io; use ada.integer_text_io;
with ada.integer_text_io;use ada.integer_text_io;
with w_gen; use w_gen;
with Ada.Numerics.Discrete_Random;
with enemy_bst; use enemy_bst;
package body combat_package is
-------------------------------
... |
-----------------------------------------------------------------------
-- Ada Labs --
-- --
-- Copyright (C) 2008-2009, AdaCore --
-- ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.