CDotProduct.java

  1. /*
  2.  * @cond LICENSE
  3.  * ######################################################################################
  4.  * # LGPL License                                                                       #
  5.  * #                                                                                    #
  6.  * # This file is part of the LightJason AgentSpeak(L++)                                #
  7.  * # Copyright (c) 2015-19, LightJason (info@lightjason.org)                            #
  8.  * # This program is free software: you can redistribute it and/or modify               #
  9.  * # it under the terms of the GNU Lesser General Public License as                     #
  10.  * # published by the Free Software Foundation, either version 3 of the                 #
  11.  * # License, or (at your option) any later version.                                    #
  12.  * #                                                                                    #
  13.  * # This program is distributed in the hope that it will be useful,                    #
  14.  * # but WITHOUT ANY WARRANTY; without even the implied warranty of                     #
  15.  * # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                      #
  16.  * # GNU Lesser General Public License for more details.                                #
  17.  * #                                                                                    #
  18.  * # You should have received a copy of the GNU Lesser General Public License           #
  19.  * # along with this program. If not, see http://www.gnu.org/licenses/                  #
  20.  * ######################################################################################
  21.  * @endcond
  22.  */

  23. package org.lightjason.agentspeak.action.builtin.math.blas.vector;

  24. import cern.colt.matrix.tdouble.DoubleMatrix1D;
  25. import com.codepoetics.protonpack.StreamUtils;
  26. import org.lightjason.agentspeak.action.builtin.IBuiltinAction;
  27. import org.lightjason.agentspeak.language.CCommon;
  28. import org.lightjason.agentspeak.language.CRawTerm;
  29. import org.lightjason.agentspeak.language.ITerm;
  30. import org.lightjason.agentspeak.language.execution.IContext;
  31. import org.lightjason.agentspeak.language.fuzzy.CFuzzyValue;
  32. import org.lightjason.agentspeak.language.fuzzy.IFuzzyValue;

  33. import javax.annotation.Nonnegative;
  34. import javax.annotation.Nonnull;
  35. import java.util.List;
  36. import java.util.stream.Collectors;


  37. /**
  38.  * returns dot-product of vectors.
  39.  * The action calculates for each tupel of vectors
  40.  * the dot-product, so the argument number must be odd
  41.  * otherwise the action fails
  42.  *
  43.  * {@code [D1|D2] = math/blas/vector(V1,V2, [V3, V4] );}
  44.  * @see https://en.wikipedia.org/wiki/Dot_product
  45.  */
  46. public final class CDotProduct extends IBuiltinAction
  47. {
  48.     /**
  49.      * serial id
  50.      */
  51.     private static final long serialVersionUID = -953714393424081234L;

  52.     /**
  53.      * ctor
  54.      */
  55.     public CDotProduct()
  56.     {
  57.         super( 4 );
  58.     }

  59.     @Nonnegative
  60.     @Override
  61.     public final int minimalArgumentNumber()
  62.     {
  63.         return 2;
  64.     }

  65.     @Nonnull
  66.     @Override
  67.     public final IFuzzyValue<Boolean> execute( final boolean p_parallel, @Nonnull final IContext p_context,
  68.                                                @Nonnull final List<ITerm> p_argument, @Nonnull final List<ITerm> p_return )
  69.     {
  70.         final List<DoubleMatrix1D> l_arguments = CCommon.flatten( p_argument ).map( ITerm::<DoubleMatrix1D>raw ).collect( Collectors.toList() );
  71.         if ( l_arguments.size() % 2 == 1 )
  72.             return CFuzzyValue.from( false );

  73.         StreamUtils.windowed( l_arguments.stream(), 2 )
  74.                    .map( i -> i.get( 0 ).zDotProduct( i.get( 1 ) ) )
  75.                    .map( CRawTerm::from )
  76.                    .forEach( p_return::add );

  77.         return CFuzzyValue.from( true );
  78.     }
  79. }