Skip to content

Commit

Permalink
Remove nonstandard GNU bits/stdc++.h
Browse files Browse the repository at this point in the history
  • Loading branch information
fcooper8472 committed Jun 5, 2024
1 parent afaec73 commit 6b03f5f
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 10 deletions.
1 change: 0 additions & 1 deletion include/arguments.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#include <sstream>
#include <map>
#include <fstream>
#include <bits/stdc++.h>
#include "io.h"
#include "std.h"

Expand Down
1 change: 0 additions & 1 deletion include/genotype.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#ifndef GENOTYPE_H
#define GENOTYPE_H
#include <bits/stdc++.h>
#include "storage.h"
#include <Eigen/Dense>
#include <Eigen/Core>
Expand Down
2 changes: 1 addition & 1 deletion include/helper.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#ifndef HELPER_H
#define HELPER_H

#include <bits/stdc++.h>
#include "time.h"

#include <iostream>

using namespace std;

Expand Down
1 change: 0 additions & 1 deletion include/mailman.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <Eigen/Core>
#include <Eigen/LU>
#include <Eigen/SVD>
#include <bits/stdc++.h>
#include "storage.h"
#include <assert.h>
#include <emmintrin.h>
Expand Down
2 changes: 1 addition & 1 deletion include/storage.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef STORAGE_H
#define STORAGE_H

#include <bits/stdc++.h>
#include <vector>

void add_to_arr(int x, int j, int beta,std::vector<unsigned> &arr);
int extract_from_arr(int j,int beta,std::vector<unsigned> &arr);
Expand Down
1 change: 0 additions & 1 deletion src/ge_hetro_flexible.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#include <vector>
//#include <random>

#include <bits/stdc++.h>
#include <Eigen/Dense>
#include <Eigen/Core>
#include <Eigen/LU>
Expand Down
1 change: 0 additions & 1 deletion src/ge_hetro_flexible_multi_pheno.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#include <vector>
//#include <random>

#include <bits/stdc++.h>
#include <Eigen/Dense>
#include <Eigen/Core>
#include <Eigen/LU>
Expand Down
1 change: 0 additions & 1 deletion src/ge_mem_flexible.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#include <vector>
//#include <random>

#include <bits/stdc++.h>
#include <Eigen/Dense>
#include <Eigen/Core>
#include <Eigen/LU>
Expand Down
5 changes: 4 additions & 1 deletion src/genotype.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#include <bits/stdc++.h>
#include "genotype.h"
#include "storage.h"

#include <iostream>
#include <fstream>
#include <vector>

using namespace std;

float genotype::get_observed_pj(const std::string &line){
Expand Down
3 changes: 2 additions & 1 deletion src/storage.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "storage.h"
#include <bits/stdc++.h>

#include <vector>

void add_to_arr(int x, int j, int beta,std::vector<unsigned> &arr){

Expand Down

0 comments on commit 6b03f5f

Please sign in to comment.