repo_name stringlengths 7 81 | path stringlengths 4 224 | copies stringclasses 221
values | size stringlengths 4 7 | content stringlengths 975 1.04M | license stringclasses 15
values |
|---|---|---|---|---|---|
prool/ccx_prool | CalculiX/ccx_2.17/src/designvariabless.f | 1 | 3623 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2020 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
techno/gcc-mist32 | gcc/testsuite/gfortran.dg/deferred_type_param_5.f90 | 136 | 1180 | ! { dg-do compile }
!
! PR fortran/49110
! PR fortran/52843
!
! Based on a contributed code by jwmwalrus@gmail.com
!
! Before, character(len=:) result variable were rejected in PURE functions.
!
module mod1
use iso_c_binding
implicit none
contains
pure function c_strlen(str)
character(KIND = C_CHAR)... | gpl-2.0 |
prool/ccx_prool | ARPACK/EXAMPLES/BAND/dnbdr2.f | 3 | 12107 | program dnbdr2
c
c ... Construct matrices A in LAPACK-style band form.
c The matrix A is derived from the discretization of
c the 2-d convection-diffusion operator
c
c -Laplacian(u) + rho*partial(u)/partial(x).
c
c on the unit square with zero Dirichlet boundary condition... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.17/src/sigini.f | 1 | 1905 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2020 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
freedesktop-unofficial-mirror/gstreamer-sdk__gcc | gcc/testsuite/gfortran.dg/achar_5.f90 | 181 | 1818 | ! { dg-do compile }
!
program test
print *, char(255)
print *, achar(255)
print *, char(255,kind=1)
print *, achar(255,kind=1)
print *, char(255,kind=4)
print *, achar(255,kind=4)
print *, char(0)
print *, achar(0)
print *, char(0,kind=1)
print *, achar(0,kind=1)
print *, char(0,kind=4)
print ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/moehring.f | 1 | 16295 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
! ... | gpl-2.0 |
prool/ccx_prool | ARPACK/SRC/cnaup2.f | 3 | 29120 | c\BeginDoc
c
c\Name: cnaup2
c
c\Description:
c Intermediate level interface called by cnaupd.
c
c\Usage:
c call cnaup2
c ( IDO, BMAT, N, WHICH, NEV, NP, TOL, RESID, MODE, IUPD,
c ISHIFT, MXITER, V, LDV, H, LDH, RITZ, BOUNDS,
c Q, LDQ, WORKL, IPNTR, WORKD, RWORK, INFO )
c
c\Arguments
c
c IDO, BMAT, ... | gpl-2.0 |
alexfrolov/grappa | applications/NPB/MPI/MPI_dummy/mpi_dummy.f | 5 | 8622 | subroutine mpi_isend(buf,count,datatype,source,
& tag,comm,request,ierror)
integer buf(*), count,datatype,source,tag,comm,
& request,ierror
call mpi_error()
return
end
subroutine mpi_irecv(buf,count,datatype,source,
& tag,comm,request,ierror)
integer buf(*), c... | bsd-3-clause |
prool/ccx_prool | CalculiX/ccx_2.15/src/resultsmech_se.f | 2 | 40033 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2018 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.10/src/changesolidsections.f | 4 | 6507 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.16/src/radmatrix.f | 1 | 10082 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2019 Guido Dhondt
!
! This program 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(version 2);
!
!
!... | gpl-2.0 |
spthm/sphray | src/OpenGL/OpenGL_openglut.F90 | 2 | 67729 | MODULE OpenGL_glut
USE OpenGL_kinds
IMPLICIT NONE
PRIVATE
! Portions copyright (C) 2004, the OpenGLUT project contributors.
! OpenGLUT branched from freeglut in February, 2004.
!
! openglut.h
!
! The openglut library include file
!
! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
... | gpl-3.0 |
techno/gcc-mist32 | gcc/testsuite/gfortran.dg/allocatable_dummy_1.f90 | 188 | 1177 | ! { dg-do run }
! Test procedures with allocatable dummy arguments
program alloc_dummy
implicit none
integer, allocatable :: a(:)
integer, allocatable :: b(:)
call init(a)
if (.NOT.allocated(a)) call abort()
if (.NOT.all(a == [ 1, 2, 3 ])) call abort()
call useit(a, b)
if (.NOT.all(b ... | gpl-2.0 |
rsignell-usgs/seagrid | seagrid/mex_matlab76_win32/mexsepeli.F | 7 | 120051 | #include <fintrf.h>
c
c purpose mexsepeli solves for the 2nd order finite
c difference approximation to the separable
c elliptic equation arising from conformal
c mapping and grid generation.
c
c
c
c
c The calling sequence from MATLAB should be
c
c >> [x, y, perturb, ... | cc0-1.0 |
alexfrolov/grappa | applications/NPB/MPI/BT/full_mpiio.f | 8 | 8075 |
c---------------------------------------------------------------------
c---------------------------------------------------------------------
subroutine setup_btio
c---------------------------------------------------------------------
c---------------------------------------------------------------------
... | bsd-3-clause |
epfl-cosmo/q-e | PHonon/Gamma/find_equiv_sites.f90 | 15 | 1270 | !
! Copyright (C) 2003 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
SUBROUTINE find_equiv_sites (nat,nsym,irt,has_equivalent, &
n_diff_sites,... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.16/src/calcinitialflux.f | 1 | 1469 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2019 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/extrapolate_vel.f | 1 | 4729 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
techno/gcc-mist32 | gcc/testsuite/gfortran.dg/internal_references_1.f90 | 135 | 1045 | ! { dg-do compile }
! This tests the patch for PRs 24327, 25024 & 25625, which
! are all connected with references to internal procedures.
! This is a composite of the PR testcases; and each is
! labelled by PR.
!
! Contributed by Paul Thomas <pault@gcc.gnu.org>
!
! PR25625 - would neglect to point out that there were... | gpl-2.0 |
grlee77/scipy | scipy/integrate/quadpack/dqagp.f | 32 | 10517 | subroutine dqagp(f,a,b,npts2,points,epsabs,epsrel,result,abserr,
* neval,ier,leniw,lenw,last,iwork,work)
c***begin prologue dqagp
c***date written 800101 (yymmdd)
c***revision date 830518 (yymmdd)
c***category no. h2a2a1
c***keywords automatic integrator, general-purpose,
c singularit... | bsd-3-clause |
prool/ccx_prool | CalculiX/ccx_2.9/src/radresult.f | 5 | 1853 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.15/src/mafillk.f | 1 | 7696 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2018 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.17/src/shape6tritilde_lin.f | 1 | 6422 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2020 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
epfl-cosmo/q-e | PW/src/get_locals.f90 | 19 | 2317 | !
! Copyright (C) 2005 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!---------------------------------------------------------------------------
s... | gpl-2.0 |
prool/ccx_prool | ARPACK_i8/LAPACK/classq.f | 5 | 3038 | SUBROUTINE CLASSQ( N, X, INCX, SCALE, SUMSQ )
*
* -- LAPACK auxiliary routine (version 2.0) --
* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,
* Courant Institute, Argonne National Lab, and Rice University
* October 31, 1992
*
* .. Scalar Arguments ..
INTEGER INCX, ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/identamta.f | 6 | 1618 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.8p2/src/identamta.f | 6 | 1618 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/writepf.f | 6 | 2068 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.8p2/src/resultsini_em.f | 2 | 11252 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/xlocal.f | 10 | 9640 | !
! 3D local of the gauss points within the faces of
! the elements
!
! xlocal8r: C3D8R element
! xlocal8: C3D8 and C3D20R element
! xlocal20: C3D20 element
! xlocal4: C3D4 element
! xlocal10: C3D10 element
! xlocal6: C3D6 element
! xlocal15: C3D15 element
!
xlocal8r=reshape((... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.8p2/src/xlocal.f | 10 | 9640 | !
! 3D local of the gauss points within the faces of
! the elements
!
! xlocal8r: C3D8R element
! xlocal8: C3D8 and C3D20R element
! xlocal20: C3D20 element
! xlocal4: C3D4 element
! xlocal10: C3D10 element
! xlocal6: C3D6 element
! xlocal15: C3D15 element
!
xlocal8r=reshape((... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.11/src/xlocal.f | 10 | 9640 | !
! 3D local of the gauss points within the faces of
! the elements
!
! xlocal8r: C3D8R element
! xlocal8: C3D8 and C3D20R element
! xlocal20: C3D20 element
! xlocal4: C3D4 element
! xlocal10: C3D10 element
! xlocal6: C3D6 element
! xlocal15: C3D15 element
!
xlocal8r=reshape((... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.16/src/fixnode.f | 1 | 2050 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2019 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
grlee77/scipy | scipy/integrate/quadpack/dqc25f.f | 6 | 13255 | subroutine dqc25f(f,a,b,omega,integr,nrmom,maxp1,ksave,result,
* abserr,neval,resabs,resasc,momcom,chebmo)
c***begin prologue dqc25f
c***date written 810101 (yymmdd)
c***revision date 830518 (yymmdd)
c***category no. h2a2a2
c***keywords integration rules for functions with cos or sin
c ... | bsd-3-clause |
techno/gcc-mist32 | gcc/testsuite/gfortran.dg/edit_real_1.f90 | 137 | 2462 | ! { dg-do run }
! Check real value edit descriptors
! Also checks that rounding is performed correctly
program edit_real_1
character(len=20) s
character(len=20) x
character(len=200) t
parameter (x = "xxxxxxxxxxxxxxxxxxxx")
! W append a "z" onto each test to check the field is the correct width
s = x
! G ... | gpl-2.0 |
epfl-cosmo/q-e | XSpectra/src/lr_sm1_psi.f90 | 6 | 12573 | !
! Copyright (C) 2001-2006 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!-------------------------------------------------------------------... | gpl-2.0 |
techno/gcc-mist32 | gcc/testsuite/gfortran.dg/entry_14.f90 | 136 | 1767 | ! { dg-do run }
!
! PR fortran/34137
!
! Entry was previously not possible in a module.
! Checks also whether the different result combinations
! work properly.
!
module m1
implicit none
contains
function func(a)
implicit none
integer :: a, func
real :: ent
func = a*4
return
entry ent(a)
ent = -a*2.0
r... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.17/src/plane_eq.f | 1 | 1891 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2020 Guido Dhondt
!
! This program 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(version 2);
!
! ... | gpl-2.0 |
freedesktop-unofficial-mirror/gstreamer-sdk__gcc | gcc/testsuite/gfortran.dg/read_eof_all.f90 | 169 | 1987 | ! { dg-do run }
! PR43265 Followup patch for miscellaneous EOF conditions.
! Eaxamples from Tobius Burnus
use iso_fortran_env
character(len=2) :: str, str2(2)
integer :: a, b, c, ios
str = ''
str2 = ''
open(99,file='test.dat',access='stream',form='unformatted', status='replace')
write(99) ' '
close(99... | gpl-2.0 |
francescosalvadore/openpde | src/lib/openpde_field/openpde_field_block_FV_1D.f90 | 1 | 6924 | !< Concrete class of field block for Finite Volume 1D methods.
module openpde_field_block_FV_1D
!< Concrete class of field block for Finite Volume 1D methods.
use, intrinsic :: iso_fortran_env, only : stderr=>error_unit
use openpde_kinds
use openpde_mesh_FV_1D
use openpde_mesh_block_FV_1D
impli... | bsd-2-clause |
prool/ccx_prool | CalculiX/ccx_2.16/src/calcvol.f | 3 | 1558 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998 Guido Dhondt
!
! This program 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(version 2);
!
!
! T... | gpl-2.0 |
epfl-cosmo/q-e | PW/src/update_pot.f90 | 7 | 29070 | !
! Copyright (C) 2001-2016 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
#define ONE (1.D0,0.D0)
#define ZERO (0.D0,0.D0)
!
MODULE extrapo... | gpl-2.0 |
prool/ccx_prool | ARPACK_i8/BLAS/zgbmv.f | 25 | 10059 | SUBROUTINE ZGBMV ( TRANS, M, N, KL, KU, ALPHA, A, LDA, X, INCX,
$ BETA, Y, INCY )
* .. Scalar Arguments ..
COMPLEX*16 ALPHA, BETA
INTEGER INCX, INCY, KL, KU, LDA, M, N
CHARACTER*1 TRANS
* .. Array Arguments ..
COMPLEX*16 A( L... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.10/src/calccvfa.f | 3 | 1489 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.9/src/radiate.f | 4 | 3292 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.8p2/src/shape3l.f | 2 | 2019 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.10/src/boundaryfs.f | 4 | 8900 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
epfl-cosmo/q-e | PHonon/Gamma/drhodv.f90 | 2 | 1551 | !
! Copyright (C) 2003 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!-----------------------------------------------------------------------
SUBROUTIN... | gpl-2.0 |
grlee77/scipy | scipy/special/cdflib/cdfbin.f | 18 | 8616 | SUBROUTINE cdfbin(which,p,q,s,xn,pr,ompr,status,bound)
C**********************************************************************
C
C SUBROUTINE CDFBIN ( WHICH, P, Q, S, XN, PR, OMPR, STATUS, BOUND )
C Cumulative Distribution Function
C BINomial distribution
C
C
C ... | bsd-3-clause |
prool/ccx_prool | ARPACK_i8/EXAMPLES/NONSYM/sndrv1.f | 3 | 16550 | program sndrv1
c
c
c Example program to illustrate the idea of reverse communication
c for a standard nonsymmetric eigenvalue problem.
c
c We implement example one of ex-nonsym.doc in DOCUMENTS directory
c
c\Example-1
c ... Suppose we want to solve A*x = lambda*x in regular mode,
c where ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.11/src/expansions.f | 6 | 5146 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
alexfrolov/grappa | applications/NPB/MPI/LU/blts.f | 5 | 9217 | c---------------------------------------------------------------------
c---------------------------------------------------------------------
subroutine blts ( ldmx, ldmy, ldmz,
> nx, ny, nz, k,
> omega,
> v,
> ldz, ldy, ldx,... | bsd-3-clause |
epfl-cosmo/q-e | PHonon/PH/phq_recover.f90 | 8 | 8504 | !
! Copyright (C) 2001-2009 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!-------------------------------------------------------------------... | gpl-2.0 |
jarn0ld/gnuradio | gr-filter/lib/gen_interpolator_taps/praxis.f | 96 | 38958 | C
C Copyright 2002 Free Software Foundation, Inc.
C
C This file is part of GNU Radio
C
C GNU Radio is free software; you can redistribute it and/or modify
C it under the terms of the GNU General Public License as published by
C the Free Software Foundation; either version 3, or (at your option)
C any later version.
C
C... | gpl-3.0 |
techno/gcc-mist32 | libgfortran/generated/_dim_r10.F90 | 47 | 1458 | ! Copyright (C) 2002-2015 Free Software Foundation, Inc.
! Contributed by Paul Brook <paul@nowt.org>
!
!This file is part of the GNU Fortran 95 runtime library (libgfortran).
!
!GNU libgfortran is free software; you can redistribute it and/or
!modify it under the terms of the GNU General Public
!License as publishe... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.17/src/map3dtolayer.f | 1 | 6412 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2020 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/inversewavspd.f | 1 | 4035 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2007 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.16/src/objectives.f | 1 | 15240 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2019 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
techno/gcc-mist32 | libgomp/testsuite/libgomp.fortran/simd7.f90 | 102 | 9430 | ! { dg-do run }
! { dg-additional-options "-msse2" { target sse2_runtime } }
! { dg-additional-options "-mavx" { target avx_runtime } }
subroutine foo (d, e, f, g, m, n)
integer :: i, j, b(2:9), c(3:n), d(:), e(2:n), f(2:,3:), n
integer, allocatable :: g(:), h(:), k, m
logical :: l
l = .false.
allocate (h(2:... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.8p2/src/biotsavart.f | 6 | 4807 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/biotsavart.f | 6 | 4807 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/massflow_percent.f | 1 | 4745 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
!... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.17/src/near3d_se.f | 1 | 6384 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2020 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
epfl-cosmo/q-e | PP/src/local_dos1d.f90 | 8 | 7523 |
!
! Copyright (C) 2001 PWSCF group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
!--------------------------------------------------------------------
SUBROUTINE ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/convert2slapcol.f | 1 | 1342 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.15/src/isortiid.f | 10 | 8748 | !
! SLATEC: public domain
!
*deck isort
subroutine isortiid (ix,iy,dy,n,kflag)
!
! modified to make the same interchanges in an integer (iy)
! and double (dy) array!
!
C***BEGIN PROLOGUE ISORT
C***PURPOSE Sort an array and optionally make the same interchanges in
C an auxiliary array. T... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/isortiid.f | 10 | 8748 | !
! SLATEC: public domain
!
*deck isort
subroutine isortiid (ix,iy,dy,n,kflag)
!
! modified to make the same interchanges in an integer (iy)
! and double (dy) array!
!
C***BEGIN PROLOGUE ISORT
C***PURPOSE Sort an array and optionally make the same interchanges in
C an auxiliary array. T... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.16/src/isortiid.f | 10 | 8748 | !
! SLATEC: public domain
!
*deck isort
subroutine isortiid (ix,iy,dy,n,kflag)
!
! modified to make the same interchanges in an integer (iy)
! and double (dy) array!
!
C***BEGIN PROLOGUE ISORT
C***PURPOSE Sort an array and optionally make the same interchanges in
C an auxiliary array. T... | gpl-2.0 |
techno/gcc-mist32 | libgfortran/generated/_log_r8.F90 | 47 | 1467 | ! Copyright (C) 2002-2015 Free Software Foundation, Inc.
! Contributed by Paul Brook <paul@nowt.org>
!
!This file is part of the GNU Fortran 95 runtime library (libgfortran).
!
!GNU libgfortran is free software; you can redistribute it and/or
!modify it under the terms of the GNU General Public
!License as publishe... | gpl-2.0 |
techno/gcc-mist32 | gcc/testsuite/gfortran.dg/equiv_7.f90 | 174 | 3659 | ! { dg-do run }
! { dg-options "-std=gnu" }
! Tests the fix for PR29786, in which initialization of overlapping
! equivalence elements caused a compile error.
!
! Contributed by Bernhard Fischer <aldot@gcc.gnu.org>
!
block data
common /global/ ca (4)
integer(4) ca, cb
equivalence (cb, ca(3))
data (ca(i), i = 1,... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/uncouptempdisps.f | 2 | 7283 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.9/src/resultsprint.f | 1 | 15189 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
techno/gcc-mist32 | gcc/testsuite/gfortran.dg/namelist_22.f90 | 166 | 1390 | !{ dg-do run { target fd_truncate } }
!{ dg-options "-std=legacy" }
!
! Tests filling arrays from a namelist read when object list is not complete.
! This is the same as namelist_21.f90 except using spaces as seperators instead
! of commas. Developed from a test case provided by Christoph Jacob.
! Contributed by Jerry ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/addimdnodedof.f | 2 | 2588 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
LucHermitte/ITK | Modules/ThirdParty/VNL/src/vxl/v3p/netlib/blas/zgeru.f | 46 | 4266 | SUBROUTINE ZGERU(M,N,ALPHA,X,INCX,Y,INCY,A,LDA)
* .. Scalar Arguments ..
DOUBLE COMPLEX ALPHA
INTEGER INCX,INCY,LDA,M,N
* ..
* .. Array Arguments ..
DOUBLE COMPLEX A(LDA,*),X(*),Y(*)
* ..
*
* Purpose
* =======
*
* ZGERU performs the rank 1 operation
*
* A := alpha*x*y' + ... | apache-2.0 |
prool/ccx_prool | CalculiX/ccx_2.10/src/liquidchannel.f | 4 | 45555 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.16/src/preprojectgrad.f | 1 | 1926 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2019 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
alexfrolov/grappa | applications/NPB/MPI/LU/erhs.f | 6 | 20815 | c---------------------------------------------------------------------
c---------------------------------------------------------------------
subroutine erhs
c---------------------------------------------------------------------
c---------------------------------------------------------------------
c----------... | bsd-3-clause |
freedesktop-unofficial-mirror/gstreamer-sdk__gcc | gcc/testsuite/gfortran.dg/minlocval_1.f90 | 164 | 6341 | ! { dg-do run }
! { dg-add-options ieee }
! { dg-skip-if "NaN not supported" { spu-*-* } { "*" } { "" } }
real :: a(3), nan, minf, pinf
real, allocatable :: c(:)
logical :: l
logical :: l2(3)
nan = 0.0
minf = 0.0
pinf = 0.0
nan = 0.0/nan
minf = -1.0/minf
pinf = 1.0/pinf
allocate (c(3))
a(:) = ... | gpl-2.0 |
techno/gcc-mist32 | gcc/testsuite/gfortran.dg/minlocval_1.f90 | 164 | 6341 | ! { dg-do run }
! { dg-add-options ieee }
! { dg-skip-if "NaN not supported" { spu-*-* } { "*" } { "" } }
real :: a(3), nan, minf, pinf
real, allocatable :: c(:)
logical :: l
logical :: l2(3)
nan = 0.0
minf = 0.0
pinf = 0.0
nan = 0.0/nan
minf = -1.0/minf
pinf = 1.0/pinf
allocate (c(3))
a(:) = ... | gpl-2.0 |
LucHermitte/ITK | Modules/ThirdParty/Netlib/src/netlib/slatec/dgamr.f | 48 | 1343 | *DECK DGAMR
DOUBLE PRECISION FUNCTION DGAMR (X)
C***BEGIN PROLOGUE DGAMR
C***PURPOSE Compute the reciprocal of the Gamma function.
C***LIBRARY SLATEC (FNLIB)
C***CATEGORY C7A
C***TYPE DOUBLE PRECISION (GAMR-S, DGAMR-D, CGAMR-C)
C***KEYWORDS FNLIB, RECIPROCAL GAMMA FUNCTION, SPECIAL FUNCTIONS
C***AUTHOR... | apache-2.0 |
freedesktop-unofficial-mirror/gstreamer-sdk__gcc | gcc/testsuite/gfortran.dg/c_ptr_tests_14.f90 | 30 | 1423 | ! { dg-do run }
! { dg-options "-fdump-tree-original" }
!
! PR fortran/41298
!
! Check that c_null_ptr default initializer is really applied
module m
use iso_c_binding
type, public :: fgsl_file
type(c_ptr) :: gsl_file = c_null_ptr
type(c_funptr) :: gsl_func = c_null_funptr
type(c_ptr) :: NIptr... | gpl-2.0 |
freedesktop-unofficial-mirror/gstreamer-sdk__gcc | gcc/testsuite/gfortran.dg/where_operator_assign_2.f90 | 52 | 3388 | ! { dg-do compile }
! Tests the fix for PR30407, in which operator assignments did not work
! in WHERE blocks or simple WHERE statements.
!
! Contributed by Paul Thomas <pault@gcc.gnu.org>
!******************************************************************************
module global
type :: a
integer :: b
inte... | gpl-2.0 |
techno/gcc-mist32 | libgfortran/generated/_sinh_r4.F90 | 47 | 1473 | ! Copyright (C) 2002-2015 Free Software Foundation, Inc.
! Contributed by Paul Brook <paul@nowt.org>
!
!This file is part of the GNU Fortran 95 runtime library (libgfortran).
!
!GNU libgfortran is free software; you can redistribute it and/or
!modify it under the terms of the GNU General Public
!License as publishe... | gpl-2.0 |
epfl-cosmo/q-e | GWW/gww/para_gww.f90 | 12 | 3927 | !
! Copyright (C) 2001-2013 Quantum ESPRESSO group
! This file is distributed under the terms of the
! GNU General Public License. See the file `License'
! in the root directory of the present distribution,
! or http://www.gnu.org/copyleft/gpl.txt .
!
!
MODULE para_gww
!this modules contains arrays indicating if the ... | gpl-2.0 |
prool/ccx_prool | ARPACK_i8/LAPACK/dlartg.f | 12 | 3969 | SUBROUTINE DLARTG( F, G, CS, SN, R )
*
* -- LAPACK auxiliary routine (version 2.0) --
* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,
* Courant Institute, Argonne National Lab, and Rice University
* September 30, 1994
*
* .. Scalar Arguments ..
DOUBLE PRECISION CS, F, G, R, ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.10/src/rcavi.f | 4 | 2496 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
!... | gpl-2.0 |
epfl-cosmo/q-e | atomic/src/dvex.f90 | 16 | 1906 | !--------------------------------------------------------------------
subroutine dvex(nu,dvy)
!--------------------------------------------------------------------
!
USE kinds, ONLY: DP
USE constants, ONLY: e2
USE ld1inc, ONLY: nwf, psi, ll, oc, sl3, nspin, isw, grid
use radial_grids, only: ndmx... | gpl-2.0 |
LucHermitte/ITK | Modules/ThirdParty/VNL/src/vxl/v3p/netlib/eispack/balbak.f | 41 | 2307 | subroutine balbak(nm,n,low,igh,scale,m,z)
c
integer i,j,k,m,n,ii,nm,igh,low
double precision scale(n),z(nm,m)
double precision s
c
c this subroutine is a translation of the algol procedure balbak,
c num. math. 13, 293-304(1969) by parlett and reinsch.
c handbook for auto. comp., vol.... | apache-2.0 |
techno/gcc-mist32 | libgomp/testsuite/libgomp.fortran/examples-4/e.50.4.f90 | 74 | 1424 | ! { dg-do run }
module e_50_4_mod
contains
subroutine init (v1, v2, N)
integer :: i, N
real, pointer, dimension(:) :: v1, v2
do i = 1, N
v1(i) = i + 2.0
v2(i) = i - 3.0
end do
end subroutine
subroutine check (p, N)
integer :: i, N
real, parameter :: EPS = 0.00001
real, po... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.10/src/nidentll.f | 6 | 1352 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.9/src/nidentll.f | 6 | 1352 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.16/src/extfacepernode.f | 1 | 2264 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2019 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.17/src/umat.f | 2 | 2859 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2020 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.8p2/src/noanalysiss.f | 6 | 1573 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/noanalysiss.f | 6 | 1573 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
sally-xiyue/pycles | RRTMG/sw/modules/rrsw_ncpar.f90 | 19 | 3966 | module rrsw_ncpar
use parkind ,only : im => kind_im, rb => kind_rb
implicit none
save
real(kind=rb), parameter :: cpdair = 1003.5 ! Specific heat capacity of dry air
! at constant pressure at 273 K
! (J kg-1 K-1)
integ... | gpl-3.0 |
prool/ccx_prool | CalculiX/ccx_2.11/src/mafillpbc.f | 3 | 1789 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
! ... | gpl-2.0 |
prool/ccx_prool | CalculiX/ccx_2.12/src/pk_cdi_r.f | 6 | 1261 | !
! CalculiX - A 3-dimensional finite element program
! Copyright (C) 1998-2015 Guido Dhondt
!
! This program 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(version 2);
!
!
!... | gpl-2.0 |
prool/ccx_prool | ARPACK/LAPACK/dlaexc.f | 7 | 10799 | SUBROUTINE DLAEXC( WANTQ, N, T, LDT, Q, LDQ, J1, N1, N2, WORK,
$ INFO )
*
* -- LAPACK auxiliary routine (version 2.0) --
* Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,
* Courant Institute, Argonne National Lab, and Rice University
* February 29, 1992
*
* .. S... | gpl-2.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.