Skip to content

Commit

Permalink
Edited Copyright Information of all files edited by me
Browse files Browse the repository at this point in the history
  • Loading branch information
ashish1294 committed Mar 10, 2014
1 parent b2737f6 commit 8283053
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions nmod_mat.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
Copyright (C) 2010 William Hart
Copyright (C) 2010,2011 Fredrik Johansson
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down
1 change: 1 addition & 0 deletions nmod_mat/doc/nmod_mat.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
/******************************************************************************

Copyright (C) 2010 Fredrik Johansson
Copyright (C) 2014 Ashish Kedia

******************************************************************************/

Expand Down
5 changes: 2 additions & 3 deletions nmod_mat/one.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
=============================================================================*/
/******************************************************************************
Copyright (C) 2010 William Hart
Copyright (C) 2010 Fredrik Johansson
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand All @@ -36,7 +35,7 @@ nmod_mat_one(nmod_mat_t mat)
{
slong i,j;
for(i = 0; i < mat->r; i++)
for(j=0; j < mat->c; j++)
for(j = 0; j < mat->c; j++)
if(i==j) nmod_mat_entry(mat, i, j) = 1;
else nmod_mat_entry(mat, i, j) = 0;
}
3 changes: 1 addition & 2 deletions nmod_mat/pow.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
=============================================================================*/
/******************************************************************************
Copyright (C) 2010 William Hart
Copyright (C) 2010 Fredrik Johansson
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down
2 changes: 1 addition & 1 deletion nmod_mat/swap.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
=============================================================================*/
/******************************************************************************
Copyright (C) 2010 Fredrik Johansson
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down
2 changes: 1 addition & 1 deletion nmod_mat/test/t-pow.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
=============================================================================*/
/******************************************************************************
Copyright (C) 2010 Fredrik Johansson
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down
1 change: 1 addition & 0 deletions nmod_poly.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
Copyright (C) 2010, 2011 William Hart
Copyright (C) 2011 Sebastian Pancratz
Copyright (C) 2011 Fredrik Johansson
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down
1 change: 1 addition & 0 deletions nmod_poly/doc/nmod_poly.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
Copyright (C) 2010 William Hart
Copyright (C) 2011 Fredrik Johansson
Copyright (C) 2011 Sebastian Pancratz
Copyright (C) 2014 Ashish Kedia

******************************************************************************/

Expand Down
2 changes: 1 addition & 1 deletion nmod_poly/evaluate_mat.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
=============================================================================*/
/******************************************************************************
Copyright (C) 2010 William Hart
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down
2 changes: 1 addition & 1 deletion nmod_poly/test/t-evaluate_mat.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
=============================================================================*/
/******************************************************************************
Copyright (C) 2010 William Hart
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down
1 change: 1 addition & 0 deletions printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
/******************************************************************************
Copyright (C) 2013 William Hart
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down
1 change: 1 addition & 0 deletions sprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
/******************************************************************************
Copyright (C) 2013 William Hart
Copyright (C) 2014 Ashish Kedia
******************************************************************************/

Expand Down

0 comments on commit 8283053

Please sign in to comment.