• Home
  • Raw
  • Download

Lines Matching refs:So

28 …am is so simple, that compiling it shouldn't involve anything interesting. So before starting, let…
62 So let us look line by line at our example program, and let's follow Eigen as it compiles it.
77 …te parameters, but the last 3 are automatically determined by the first 3. So you don't need to wo…
126 …tion of Matrix (as we explained above), which is a subclass of MatrixBase. So what is being called…
146 …as Matrix and all the other expression types, is a subclass of MatrixBase. So it is enough to defi…
160 So let's end this digression and come back to the piece of code from our example program that we we…
186 … its scalar type. For example, VectorXf::Scalar is a typedef for \c float. So here, if life was ea…
190 …the compiler would complain that the type Derived hasn't yet been defined. So we use a workaround:…
194 … In this specialization of internal::traits, we define the Scalar typedef. So when we actually def…
230 Here, Base is a typedef for MatrixBase\<Matrix\>. So, what is being called is the operator= of Matr…
239 So the full prototype of the operator= being called is:
272 So internal::assign_selector takes 4 template parameters, but the 2 last ones are automatically det…
274 …since the beginning that we didn't want a temporary to be introduced here. So if you go to src/Cor…
276 …des are column vectors, in the sense that ColsAtCompileTime is equal to 1. So NeedToTranspose is \…
278 So, here we are in the partial specialization:
326 So the partial specialization of internal::assign_impl that we're looking at is:
363 …ackets are 128-bit-aligned. This is especially important for write access. So when writing to the …
364 …acketSize. Here, there are 50 coefficients to copy and \a packetSize is 4. So we'll have to copy t…
390 First, writePacket() here is a method on the left-hand side VectorXf. So we go to src/Core/Matrix.h…
428 … just casting from MatrixBase to the subclass which here is CwiseBinaryOp. So let's go to src/Core…
440 …rhs is the vector \a w. So the packet() function here is Matrix::packet(). The template parameter …
458 So m_functor is an object of the empty class internal::scalar_sum_op<float>. As we mentioned above,…