...use the electric fence with gdb I get the following error message:
Program received signal SIGSEGV, Segmentation fault.
0x08055c51 in servant(float*, int, int, float*, char*, char*, int) (chrom=0x6265445f,
nchrom=3106677, chrom_len=4, fit=0x4015afd4,
workdir=0xbfffdd10...
Hi,
I am having a weird problem here. I was getting a segmentation fault immediately after a function call. The last command in that particular function was also executed very successfully. When it comes to the main function, it dumps a core. I used electric fence and gdb to debug it. After...
...funcation A, when I use it in the place of function B. The difference between the functions
A and B is as follows:
< float Evaluate_chrom(char *trjfileBE, char *trjfileMC,
< char *trjfileSE, float fit_func[])
---
> float Evaluate_chrom(char *trjfileBE, char *trjfileMC...
This is in addition to my earlier post. I copied some of the outputfiles to another directory , while the process was still running and writing other outputfiles. Then I did this " tail -n ". It was incomplete.
After the process was done I did " tail -n " again on the same outputfile. I see...
Hi All,
I am new to the awk scripting language. I want to split a large file into multiple small files. I am looking for a pattern in the large file and breaking it into smaller files.
This is how my code looks
{
for(i=1;i<=10;i++)
{
file = "xsaa_"
name = ".sdf"
for (j=1;j<=10; j++)...
Hi all,
I want to read in a large file and then split into smaller files as per some pattern. I am using fstream in C++. My executable slows after some time. I am seraching a way to speed up this process. Can any one please help me with this.
My code is as follows.
ifstream...
...gdb.
I am getting this message.
Program received signal SIGSEGV, Segmentation fault.
0x400a3c9a in std::string::_Alloc_hider::_Alloc_hider(char*, std::allocator<char> const&) () from /usr/lib/libstdc++.so.5
This core dumping occurs at the end of my program
Can anyone pl help me in...
I was trying to work out installing python 2.2 in the read hat linux version of 7.0. I ran into lot of problems.
AT some point of time it complained about missing GLIBC_2.3 in /lib/libc.so.6. I thought that I would try copying this file from other machine. In this process I did rename this...
Thanks for the suggestions.
Here I define the derived class
#ifndef offspringlib
#define offspringlib
#include "Chromosome.h"
class offspring:public chromosome
{
friend class chromosome;
protected:
chromosome parent_chrom;
public:
};
#endif
I am trying to get the offspring as a...
No ,I did not use any template.
I missed a key point in my earlier post. In the derived class I have a member which is of parent class.
I have Chromosome as basic class and I have Offpsring as derived class. In the Derived class offspring I have a member of type chromosome.
I guess this...
What does this base class has incomplete type mean.
I have a base class by name chromosome and the derived class by name offspring. In the file where I start the definition of derived class , i did include the header file that has the definition of base class.
Can anyone help me
Thanks in advance
...This is how my function looks like
void slope(int a[][2],float slop[],unsigned long );
I used double pointer to dynamically allocate memory.
int **points=NULL;
points= new int* [nvertices+1];
for(i=1;i<=nvertices;i++)
points[i]=new int [2];
this is the function call...
Hi all,
I have a question not directly related to C++. I am writing a code in openGL using GLUT library. When I use the keyboard function,glutKeyboardFunc(keyboard) Keys like righ,left,up and down arrow keys don't provide input to this function. This is the function I used for this key board...
...is my file where I had declared the class crd.
#include <string>
using namespace std;
#ifndef crdlib
#define crdlib
class crd
{
protected:
float *xcrd,*ycrd,*zcrd,*wei;
int natoms;
int *atnum,*resnum;
string *res,*attype,*side;
int *resid;
float xcrd_min,xcrd_max;
float...
Hi all,
I have a very small code, which reads in data of an object from a file and writes it back to another file.
Here is the code.
#include "class.h"
void main()
{
string ligcrd;
crd lig;
cout<<"Ligand.Crd file :"<<endl;
cin>>ligcrd...
Hi all,
I have a simple question about the concatenation.I want to concatenate a string and an integer to get another string.I checked in my C++ book and in google. I couldn't get the answer.Can anyone help me,Please.
Thanks for the time and help.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.