Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bitsets3 #239

Merged
merged 55 commits into from
Nov 22, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
cd7e19d
Added core files for stdlib_bitsets
wclodius2 Sep 29, 2020
e35ebc7
Prepared for testing of stdlib_bitsets
wclodius2 Sep 29, 2020
e2f3d66
Eliminated unused variablese
wclodius2 Sep 30, 2020
7d778cd
Added documentation for stdlib_bitsets
wclodius2 Sep 30, 2020
acfa3ac
Update doc/specs/stdlib_bitsets.md
jvdp1 Oct 4, 2020
7c5361c
Update doc/specs/stdlib_bitsets.md
jvdp1 Oct 4, 2020
eb2e5c1
formatting
jvdp1 Oct 4, 2020
e70c909
Update src/tests/Makefile.manual
jvdp1 Oct 4, 2020
8e25812
Update doc/specs/stdlib_bitsets.md
jvdp1 Oct 4, 2020
c9e851b
Changed makefiles to accept stdlib_bitset*.fypp instead of stdlib_bit…
wclodius2 Oct 8, 2020
d80e5d9
Renamed files stdlib_bitset*.f90 to stdlib_bitset*.fypp
wclodius2 Oct 8, 2020
f2d67fc
Changed preprocessor files to generate logical assignments.
wclodius2 Oct 8, 2020
2833ffa
Removed files now generated by the preprocessor
wclodius2 Oct 8, 2020
3844561
Modified code to use error_handler.
wclodius2 Oct 9, 2020
9e9c252
Better documented status results
wclodius2 Oct 9, 2020
421c4d2
Removed trailing blanks
wclodius2 Oct 9, 2020
d2be3dc
Added missing return
wclodius2 Oct 9, 2020
b0c0f63
Changed WRiTE to WRITE
wclodius2 Oct 9, 2020
b12e398
Changed the kind of bit
wclodius2 Oct 9, 2020
983a083
Changed subtraction of bit from outside an int converson to inside
wclodius2 Oct 9, 2020
38095c0
Deleted redundant returns.
wclodius2 Oct 10, 2020
cc477b9
Deleted redundant return
wclodius2 Oct 10, 2020
beca325
Regularized code fences
wclodius2 Oct 10, 2020
d391970
Some typs and obvious changes
jvdp1 Oct 14, 2020
84d7d33
Apply suggestions from code review
jvdp1 Oct 14, 2020
d6dc6b1
Corrected stdlib_bitsets.md
wclodius2 Oct 15, 2020
daa83d2
Update doc/specs/stdlib_bitsets.md
jvdp1 Oct 15, 2020
30c2116
Apply suggestions from code review
jvdp1 Oct 15, 2020
0e3b788
Merge branch 'bitsets3' of https://github.com/wclodius2/stdlib into b…
wclodius2 Oct 15, 2020
adab166
Changed file names
wclodius2 Oct 15, 2020
d7cf384
Updated makefiles to deal with new names
wclodius2 Oct 15, 2020
aeae7dd
Changed discussion of bitset_type
wclodius2 Oct 15, 2020
8330945
Changed varibles to entities.
wclodius2 Oct 15, 2020
24881a5
Fixed typo in Makefile.manual
wclodius2 Oct 15, 2020
0554f5d
typos
jvdp1 Oct 15, 2020
ecd6c82
Typos and bits_kind fixes
wclodius2 Oct 16, 2020
47c7d6e
Fixed digit_count
wclodius2 Oct 16, 2020
80af2c5
Added dependence on stdlib_kinds.f90
wclodius2 Oct 16, 2020
0deab15
Fixed bits_kind breakage
wclodius2 Oct 16, 2020
9f0e4a9
Fixed up constants
wclodius2 Oct 16, 2020
9f690fd
some typos
jvdp1 Oct 16, 2020
f705346
Added discussion of undefined behavior
wclodius2 Oct 19, 2020
242950b
Fixed typo
wclodius2 Oct 19, 2020
032c440
Added reference to the bitsets module
wclodius2 Oct 19, 2020
e957342
Made it easier to change bits_kind
wclodius2 Oct 20, 2020
9161fc7
Replaced go to 100 with exit
wclodius2 Oct 20, 2020
3235ab4
Changed used modues
wclodius2 Oct 20, 2020
523dbc6
Changed handling of potential integer overflows on reads
wclodius2 Oct 21, 2020
20a15e5
Numerous changes suggested by Jeremie
wclodius2 Oct 21, 2020
57faccd
Replaced go tos
wclodius2 Oct 21, 2020
9c03d16
Replaced go tos
wclodius2 Oct 21, 2020
5c2779d
Documented the "named" form for the comparison operations
wclodius2 Oct 26, 2020
99fa382
typography fixes
milancurcic Nov 13, 2020
acb7cdb
add example to the first paragraph
milancurcic Nov 13, 2020
1be7ca3
Merge https://github.com/fortran-lang/stdlib into bitsets3
wclodius2 Nov 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,975 changes: 1,975 additions & 0 deletions doc/specs/stdlib_bitsets.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ fypp_f90("${fyppFlags}" "${fppFiles}" outFiles)

set(SRC
stdlib_ascii.f90
stdlib_bitsets.f90
stdlib_bitset_64.f90
stdlib_bitset_large.f90
stdlib_error.f90
stdlib_kinds.f90
stdlib_logger.f90
Expand Down
5 changes: 5 additions & 0 deletions src/Makefile.manual
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
SRC = f18estop.f90 \
stdlib_ascii.f90 \
stdlib_bitsets.f90 \
stdlib_bitset_64.f90 \
stdlib_bitset_large.f90 \
stdlib_error.f90 \
stdlib_io.f90 \
stdlib_kinds.f90 \
Expand Down Expand Up @@ -40,6 +43,8 @@ clean:

# Fortran module dependencies
f18estop.o: stdlib_error.o
stdlib_bitset_64.o: stdlib_bitsets.o
stdlib_bitset_large.o: stdlib_bitsets.o
stdlib_error.o: stdlib_optval.o
stdlib_io.o: \
stdlib_error.o \
Expand Down
Loading