Skip to content

Commit

Permalink
Merge pull request #81 from magni-mar/patch-4
Browse files Browse the repository at this point in the history
Remove unused parameters
  • Loading branch information
NAThompson authored May 10, 2024
2 parents 74a91e9 + c06baee commit 7d1e3f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/stuart_landau.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct stuart_landau
stuart_landau( double eta = 1.0 , double alpha = 1.0 )
: m_eta( eta ) , m_alpha( alpha ) { }

void operator()( const state_type &x , state_type &dxdt , double t ) const
void operator()( const state_type &x , state_type &dxdt , double ) const
{
const complex< double > I( 0.0 , 1.0 );
dxdt = ( 1.0 + m_eta * I ) * x - ( 1.0 + m_alpha * I ) * norm( x ) * x;
Expand Down Expand Up @@ -71,7 +71,7 @@ struct streaming_observer



int main( int argc , char **argv )
int main()
{
//[ stuart_landau_integration
state_type x = complex< double >( 1.0 , 0.0 );
Expand Down

0 comments on commit 7d1e3f5

Please sign in to comment.